-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 987 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": "@t2ee/validation",
"version": "1.0.2",
"description": "validation",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf dist && tsc -p src/tsconfig.json",
"build-test": "rm -rf test-dist/ && tsc -p src/tsconfig.test.json",
"test": "npm run build-test && ava test-dist/**/*.test.js",
"coverage": "npm run build-test && nyc ava -- test-dist/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/t2ee/validation.git"
},
"keywords": [
"t2ee",
"validation"
],
"author": "Qiaosen Huang",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/t2ee/validation/issues"
},
"homepage": "https://github.com/t2ee/validation#readme",
"peerDependencies": {
"@t2ee/core": "0.1.x",
"typescript": "2.x",
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"ava": "^0.21.0",
"nyc": "^11.1.0"
}
}