-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.63 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "sauce.js",
"version": "1.0.3",
"description": "SAUCE parser for Node.js",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "nyc mocha",
"lint": "tslint --project tsconfig.json --type-check; markdownlint README.md CHANGELOG.md",
"prepublishOnly": "npm run lint && npm run build"
},
"files": [
"dist/"
],
"nyc": {
"include": [
"lib/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": false,
"instrument": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/nrlquaker/sauce.js.git"
},
"keywords": [
"sauce",
"ansii-art",
"ascii-art"
],
"author": "nrlquaker",
"license": "MIT",
"bugs": {
"url": "https://github.com/nrlquaker/sauce.js/issues"
},
"homepage": "https://github.com/nrlquaker/sauce.js#readme",
"dependencies": {
"buffer-reader": "^0.1.0",
"fs": "0.0.1-security"
},
"devDependencies": {
"@types/buffer-reader": "^0.1.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.5",
"chai": "^4.2.0",
"markdownlint-cli": "^0.15.0",
"mocha": "^6.1.3",
"nyc": "^14.0.0",
"ts-loader": "^5.3.3",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.3"
}
}