-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.51 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
{
"name": "gracl",
"version": "0.0.17",
"description": "graph acl in typescript",
"main": "./dist/lib/gracl.js",
"typings": "./dist/lib/gracl.d.ts",
"scripts": {
"build": "rm -rf ./dist/ && npm run lint && npm run tsc",
"pretest": "npm run build && npm run lint",
"prettier": "prettier --write --single-quote './{test,lib}/**/*.ts'",
"test": "nyc ava",
"tsc": "tsc",
"lint": "tslint -c ./tslint.json ./{test,lib}/**/*.ts",
"prepublish": "npm test",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"docs": "rm -rf ./docs && typedoc --mode modules --exclude '**/test/**' --out ./docs ./ && touch ./docs/.nojekyll",
"deploy:docs": "npm run docs && gh-pages --dotfiles true -d ./docs"
},
"engines": {
"node": ">=6.9.1"
},
"repository": {
"type": "git",
"url": "https://github.com/CrossLead/gracl.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/CrossLead/gracl/issues"
},
"homepage": "https://github.com/CrossLead/gracl",
"dependencies": {},
"devDependencies": {
"@types/lodash": "4.14.73",
"@types/node": "8.0.17",
"ava": "0.22.0",
"codecov": "2.3.0",
"gh-pages": "1.0.0",
"lodash": "4.17.4",
"nyc": "11.1.0",
"prettier": "1.5.3",
"ts-node": "3.3.0",
"tslint": "5.6.0",
"typedoc": "0.8.0",
"typescript": "2.4.2"
},
"ava": {
"files": [
"dist/test/spec/**/*.js"
]
},
"nyc": {
"include": [
"dist/lib"
]
}
}