-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "schemas-utile",
"version": "1.0.3",
"description": "Better for human write schema define",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ant-motion/schema-utils.git"
},
"dependencies": {
"lodash.isplainobject": "~3.2.0",
"object-assign": "~3.0.0",
"utility": "~1.5.0",
"uuid": "^2.0.2"
},
"devDependencies": {
"@ali/ci": "^4.8.0",
"istanbul": "^0.4.5",
"jison": "^0.4.15",
"mocha": "^5.2.0",
"should": "^13.2.1"
},
"scripts": {
"test": "mocha test",
"parse": "jison parse/schema.yy parse/schema.l -o parse/schema.js",
"cov": "istanbul cover node_modules/.bin/_mocha test",
"ci": "tnpm run cov",
"pub": "npm version patch && npm publish && git push origin master && git push origin --tag && tnpm sync"
},
"browser": {
"fs": false
},
"keywords": [
"schema",
"json-schema"
],
"ci": {
"type": "gitlab"
},
"author": "hanwen.sah",
"contributors": [
"jljsj <[email protected]>"
],
"license": "ISC"
}