-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
{
"name": "legallycan",
"version": "0.1.2",
"description": "legallycan, behavior-based authorization utility",
"repository": "https://github.com/yamamotok/legallycan",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc",
"build-watch": "npx tsc -w",
"tslint": "npx tslint -c tslint.json -p tsconfig.json",
"tslint-fix": "npx tslint -c tslint.json -p tsconfig.json --fix",
"test": "npx jest --runInBand --detectOpenHandles",
"test-verbose": "npx jest --runInBand --coverage --verbose --detectOpenHandles",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run tslint-fix",
"preversion": "npm run lint",
"version": "npm run tslint-fix && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"authorization", "legal"
],
"author": "Keisuke Yamamoto",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.18",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
},
"files": [
"dist/**/*"
]
}