forked from node-modules/parameter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.05 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.05 KB
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": "parameter",
"version": "3.6.0",
"description": "A parameter verify tools.",
"main": "index.js",
"module": "index.es5.js",
"files": [
"index.js",
"index.es5.js"
],
"scripts": {
"test": "mocha -R spec -t 1000 test/*.test.js",
"cov": "istanbul cover _mocha -- -t 1000 test/*.test.js",
"ci": "npm run cov",
"build:es5": "babel index.js --presets babel-preset-es2015 -o index.es5.js",
"prepublish": "npm run build:es5",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"beautify-benchmark": "0",
"benchmark": "*",
"istanbul": "*",
"mocha": "^5.2.0",
"semantic-release": "^6.3.6",
"should": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/node-modules/parameter.git"
},
"keywords": [
"parameter",
"verify",
"univ"
],
"engines": {
"node": ">= 4.0.0"
},
"author": "fengmk2 <fengmk2@gmail.com>",
"license": "MIT"
}