forked from poppinss/indicative
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.42 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "indicative",
"version": "5.0.5",
"description": "Concise data validation library for Node.js and browsers",
"main": "builds/main.js",
"files": [
"builds"
],
"scripts": {
"lint": "standard src/**/*.js test/**/*.js",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"docs": "node bin/inlineDocs && cd static && chul build",
"docs:serve": "node bin/inlineDocs && cd static && chul serve",
"pretest": "npm run lint",
"test:node": "japa",
"test:karma": "karma start",
"test:qunit": "node bin/qunit",
"test:all": "npm run test:node && npm run test:karma && npm run test:qunit",
"test": "node bin/test"
},
"author": "virk",
"license": "MIT",
"devDependencies": {
"@slynova/slug": "^1.1.2",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"chalk": "^2.3.0",
"chul": "^1.0.3",
"clone": "^2.1.1",
"cz-conventional-changelog": "^2.1.0",
"date-fns": "^1.29.0",
"fs-extra": "^5.0.0",
"got": "^8.0.1",
"haye": "^2.0.2",
"japa": "^1.0.5",
"japa-cli": "^1.0.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-japa": "^1.0.2",
"karma-rollup-preprocessor": "^5.0.2",
"klaw": "^2.1.1",
"nyc": "^11.3.0",
"opn": "^5.1.0",
"pluralize": "^7.0.0",
"pope": "^2.0.2",
"promise-polyfill": "^6.1.0",
"regenerator-runtime": "^0.11.1",
"rollup": "^0.52.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"standard": "^10.0.3",
"striptags": "^2.2.1",
"uglify-es": "^3.2.2",
"validator": "^9.2.0"
},
"dependencies": {},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poppinss/indicative.git"
},
"keywords": [
"node-validator",
"validator",
"schema-validator",
"quick-validations"
],
"bugs": {
"url": "https://github.com/poppinss/indicative/issues"
},
"homepage": "https://github.com/poppinss/indicative#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard": {
"globals": [
"test",
"group",
"QUnit"
]
},
"nyc": {
"exclude": [
"bin",
"test"
]
}
}