-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·62 lines (62 loc) · 1.48 KB
/
package.json
File metadata and controls
executable file
·62 lines (62 loc) · 1.48 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "tumb",
"version": "0.1.5",
"description": "The typeOf method returns a string indicating the type of the value",
"main": "dist/typeof.js",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.js --mode=production",
"lint": "eslint .",
"test": "npm run lint && nyc ava",
"test:watch": "ava --watch",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"url": "https://github.com/yhc-steven/npmPub",
"type": "git"
},
"author": {
"name": "tumb",
"email": "435084418@qq.com"
},
"keywords": [
"node",
"javascript",
"typeof"
],
"license": "MIT",
"devDependencies": {
"ava": "^0.25.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"nyc": "^11.6.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13"
},
"ava": {
"files": [
"test/test.js"
],
"verbose": true,
"babel": "inherit",
"require": [
"babel-core/register"
]
},
"nyc": {
"exclude": [
"test/*.js"
]
}
}