-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.82 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
{
"name": "@nickfan/envhelper",
"version": "0.2.2",
"description": "Environment Label Helper Class",
"homepage": "https://github.com/nickfan/envhelper",
"author": {
"name": "nick fan",
"email": "",
"url": "https://github.com/nickfan"
},
"repository": "nickfan/envhelper",
"license": "MIT",
"keywords": [
"env",
"helper",
"util",
"label"
],
"dependencies": {
"@babel/runtime": "^7.4.3"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"babel-plugin-istanbul": "^5.1.2",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-xo": "^0.25.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"mochawesome": "^3.1.2",
"nodemon": "^1.18.11",
"nyc": "^14.0.0",
"prettier": "^1.17.0"
},
"engines": {
"npm": ">= 6.0.0"
},
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"start": "./node_modules/.bin/nodemon --exec ./node_modules/.bin/babel-node ./src/index.js",
"build": "./node_modules/.bin/babel src --out-dir ./lib --source-maps",
"prepublish": "npm run build",
"serve": "node ./lib/index.js",
"debug": "node --inspect-brk ./lib/index.js",
"pretest": "./node_modules/.bin/eslint .",
"test": "./node_modules/.bin/mocha",
"coverage": "./node_modules/.bin/cross-env NODE_ENV=test ./node_modules/.bin/nyc --reporter=lcov --reporter=text ./node_modules/.bin/mocha",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
}
}