-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.94 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
{
"name": "npm-project-template",
"version": "1.0.0",
"description": "npm-project-template",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/lonly197/npm-project-template.git"
},
"scripts": {
"pretest": "npm run build",
"prestart": "npm run build",
"prepublish": "rm -rf ./lib && npm run build",
"ava": "LOG_LEVEL=error NODE_ENV=test ava --verbose --serial",
"test": "nyc -a --reporter=lcov --reporter=text --reporter=html npm run ava",
"lint": "eslint src/* --ext .js",
"build": "babel -d lib/ src/",
"publish": "npm publish . --access public"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [],
"main": "index.js",
"author": "[email protected]",
"ava": {
"files": [
"test/**/*.js",
"!test/bootstrap.js",
"!test/_*/**/*.js",
"!test/swagger/_*/**/*.js"
],
"source": [
"src/**/*.js"
],
"failFast": false,
"tap": false,
"require": [
"babel-core/register",
"babel-polyfill"
],
"babel": "inherit"
},
"nyc": {
"require": [
"babel-core/register"
],
"include": [
"src/**/*.js"
],
"exclude": [
"src/config/index.js"
]
},
"pre-commit": [
"lint"
],
"dependencies": {},
"devDependencies": {
"ava": "^0.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-__coverage__": "^11.0.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-babili": "^0.1.4",
"babel-preset-es2015-node6": "^0.4.0",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.12.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"nock": "^9.1.3",
"nyc": "^11.3.0",
"pre-commit": "^1.2.2"
}
}