-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·43 lines (43 loc) · 1.02 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
{
"name": "schema.io",
"version": "0.6.9",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"private": false,
"license": "MIT",
"author": "Misery Lee <miserylee@foxmail.com>",
"description": "schema.io是一个js基本数据结构的校验库",
"keywords": [
"js",
"schema",
"validation",
"validator"
],
"repository": {
"url": "https://github.com/miserylee/schema.io"
},
"scripts": {
"build": "rm -rf ./lib && tsc",
"prebuild": "yarn run lint && yarn test",
"start": "ts-node ./src/index",
"lint": "tslint -c tslint.json ./src/**/*.ts",
"test": "mocha --require ts-node/register ./test/*.spec.ts",
"prepublishOnly": "yarn build"
},
"pre-commit": [
"prepublishOnly"
],
"devDependencies": {
"@types/mocha": "2.2.48",
"@types/node": "9.4.6",
"mocha": "5.0.1",
"pre-commit": "1.2.2",
"ts-node": "5.0.1",
"tslint": "5.9.1",
"tslint-clean-code": "0.2.5",
"typescript": "2.7.2"
},
"dependencies": {
"erz": "^0.0.5"
}
}