-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.52 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
{
"name": "npm-boilerplate",
"version": "0.0.1",
"description": "NPM Package Boilerplate",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec babel src/ --out-dir dist/",
"fix": "standard \"./src/*.js\" --fix",
"test": "mocha test",
"standard": "standard \"./src/*.js\"",
"clean": "rimraf dist/",
"build": "rimraf dist/ && babel src/ --out-dir dist/",
"prepublish": "npm run clean && npm run fix && npm run test && npm run build"
},
"precommit": [
"standard",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zhujun24/npm-boilerplate.git"
},
"homepage": "https://github.com/zhujun24/npm-boilerplate",
"bugs": {
"url": "https://github.com/zhujun24/npm-boilerplate/issues"
},
"keywords": [
"NPM",
"package",
"boilerplate"
],
"author": "zhujun24",
"contributors": [
{
"name": "zhujun24",
"email": "zhujun87654321@gmail.com"
}
],
"license": "ISC",
"dependencies": {
"request": "^2.87.0"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "^6.26.0",
"babel-core": "6.26.3",
"babel-jest": "22.4.3",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"npm-check": "5.7.0",
"pre-commit": "^1.2.2",
"rimraf": "2.6.2",
"standard": "^11.0.1"
}
}