-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 928 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
{
"name": "ts-guard-decorator",
"version": "0.2.2",
"description": "Decorator for running a check before running a method.",
"repository": {
"type": "git",
"url": "https://github.com/arkon/ts-guard-decorator.git"
},
"homepage": "https://github.com/arkon/ts-guard-decorator/",
"bugs": {
"url": "https://github.com/arkon/ts-guard-decorator/issues"
},
"files": [
"dist/*",
"README.md",
"LICENSE"
],
"author": "Eugene Cheung",
"license": "MIT",
"keywords": [
"typescript",
"decorator",
"guard"
],
"main": "./dist/guard.js",
"typings": "./dist/guard.d.ts",
"scripts": {
"build": "tsc",
"build:test": "tsc --project ./test/tsconfig.test.json",
"test": "npm run build && npm run build:test && ava ./test/test.js --verbose",
"prepublish": "npm run build && npm test"
},
"devDependencies": {
"ava": "^0.19.1",
"typescript": "^2.2.2"
}
}