-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.46 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
{
"name": "node-gigya-boilerplate",
"version": "1.0.0",
"description": "Boilerplate Node.js App using the Gigya accountJS Raas service",
"main": "index.js",
"engineStrict" : true,
"engines" : {
"node" : "6.10.1",
"npm" : "3.10.10"
},
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon --exec \"concurrently 'babel-node src/index.js' 'npm run test:all'\"",
"build": "babel src -d dist",
"lint": "eslint .",
"test": "concurrently 'npm start' 'npm run test:all && npm stop' || true",
"test:all": "npm run test:unit && npm run test:e2e && npm run lint",
"test:e2e": "chimp --browser=phantomjs",
"test:unit": "mocha --compilers js:babel-register",
"stop": "killall -0 -SIGINT node"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/maxmckenzie/node-gigya-boilerplate.git"
},
"author": "max.mckenzie@gigya-inc.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxmckenzie/node-gigya-boilerplate/issues"
},
"homepage": "https://github.com/maxmckenzie/node-gigya-boilerplate#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.24.0",
"chimp": "0.45.1",
"concurrently": "^3.4.0",
"eslint": "^3.18.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"nodemon": "^1.11.0"
}
}