-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 965 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
{
"name": "gpcl",
"version": "1.0.0",
"description": "personal utility for loading project configuration",
"repository": "[email protected]:gerardmrk/gpcl.git",
"author": "Gerard Chin <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=v8.0.0"
},
"scripts": {
"test": "nyc ava --tap | tap-spec",
"transpile": "node_modules/.bin/tsc --outDir lib",
"transpile:watch": "node_modules/.bin/tsc --watch",
"pretest": "node_modules/.bin/tsc --sourceMap --outDir .cache_tests",
"posttest": "node_modules/.bin/rimraf .cache_tests",
"prepublish": "npm run transpile"
},
"dependencies": {
"js-yaml": "^3.10.0"
},
"devDependencies": {
"@types/js-yaml": "^3.9.1",
"@types/node": "^8.0.31",
"ava": "^0.22.0",
"coveralls": "^3.0.0",
"nyc": "^11.2.1",
"rimraf": "^2.6.2",
"tap-spec": "^4.1.1",
"typescript": "^2.5.3"
}
}