-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.12 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
{
"name": "node-boilerplate",
"version": "0.0.1",
"description": "Ridiculously simple starting point for a modern Node app",
"main": "dist/index.js",
"scripts": {
"build":
"node ./node_modules/babel-cli/bin/babel.js ./src --out-dir ./dist --copy-files",
"test":
"npm run lint && npm run fmt_check && ./node_modules/.bin/mocha --compilers js:babel-core/register --reporter spec",
"lint": "node ./node_modules/eslint/bin/eslint.js ./src",
"fmt_check":
"node ./node_modules/prettier/bin/prettier.js --config ./.prettierrc --list-different ./src/**/*.js",
"fmt":
"node ./node_modules/prettier/bin/prettier.js --config ./.prettierrc --write ./src/**/*.js",
"start": "npm run build && node ./dist/index.js"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.17.0",
"babel-preset-es2017": "6.24.1",
"babel-preset-import-export": "1.0.2",
"chai": "4.1.2",
"eslint": "4.11.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.8.0",
"mocha": "4.0.0",
"prettier": "1.8.2"
},
"author": "Ryan McDermott",
"license": "MIT"
}