-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 932 Bytes
/
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
{
"name": "pratt",
"version": "0.7.0",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"doc": "tsc --module es2015 --target es2017 && esdoc",
"lint": "prettier -l '{src,test}/**/*.ts'",
"lint:fix": "prettier --write '{src,test}/**/*.ts'",
"precommit": "npm test",
"prepack": "tsc && npm test",
"test": "tape -r ts-node/register test/index.ts | tap-spec",
"test:cover": "nyc -r text -r html npm test"
},
"devDependencies": {
"@types/node": "^7.0.13",
"esdoc": "^0.5.2",
"husky": "^0.14.3",
"nyc": "^11.6.0",
"perplex": "0.10.0",
"prettier": "^1.10.2",
"sinon": "^4.5.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"ts-node": "^4.1.0",
"typescript": "^2.2.2"
},
"files": [
"lib/index.js",
"lib/index.d.ts",
"index.d.ts"
],
"nyc": {
"extension": [
".ts"
]
},
"repository": "https://github.com/jrop/pratt"
}