forked from Archarithms/javascript-interview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.22 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.22 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"private": true,
"version": "0.0.0-development",
"name": "beards-js",
"description": "Modern node boilerplate",
"author": "Kanzelmeyer Software Company <kanzelm3@gmail.com> (http://kanzelmeyer.co)",
"homepage": "https://github.com/kanzelmeyer-software/beards-js",
"repository": "git@github.com:kanzelmeyer-software/beards-js.git",
"license": "MIT",
"main": "build/index.js",
"engines": {
"node": ">=6"
},
"files": [
"lib",
"bundles"
],
"bugs": {
"url": "https://github.com/kanzelmeyer-software/beards-js/issues"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"scripts": {
"presetup": "npm i chalk shelljs",
"setup": "node ./internals/scripts/setup.js",
"build:dev": "rimraf build && webpack --config internals/webpack/webpack.config.dev.js",
"build:prod": "rimraf lib && NODE_ENV=production webpack -p --config internals/webpack/webpack.config.js",
"compile": "node ./internals/scripts/compile.js",
"start": "yarn build:dev && node build/index.js",
"debug": "NODE_ENV=debug yarn start",
"coverage": "nyc ava",
"coverage:report": "npm run coverage && nyc report --reporter=html && open coverage/index.html",
"test": "ava --verbose",
"test:watch": "ava --watch",
"generate": "plop --plopfile internals/generators/index.js",
"lint": "eslint src/",
"validate": "yarn list"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "*",
"babel-core": "^6.21.0",
"babel-eslint": "6",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "*",
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"nyc": "^10.0.0",
"plop": "^1.7.3",
"precommit-hook-eslint": "^3.0.0",
"rimraf": "^2.5.4",
"shelljs": "^0.7.6",
"sinon": "^1.17.7",
"webpack": "2.2.0-rc.3",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"chalk": "^1.1.3",
"json-loader": "^0.5.4",
"lodash": "^4.17.4",
"moment": "^2.17.1"
},
"pre-commit": [
"lint",
"validate"
]
}