-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1023 Bytes
/
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
{
"name": "node-base",
"version": "1.0.0",
"description": "The description",
"repository": {
"type": "git",
"url": "https://github.com/kadirahq/node-base.git"
},
"license": "Kadira Inc.",
"options": {
"mocha": "--require scripts/mocha_runner server/**/__tests__/**/*.js"
},
"scripts": {
"dev": "./scripts/devrun.sh",
"prod": "./scripts/prodrun.sh",
"localprod": "./scripts/localprodrun.sh",
"lint": "./node_modules/.bin/eslint ./server",
"lintfix": "./node_modules/.bin/eslint ./server --fix",
"testonly": "./node_modules/.bin/mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly"
},
"devDependencies": {
"nodemon": "1.7.x",
"mocha": "2.x.x",
"chai": "3.x.x",
"eslint": "1.7.x",
"babel-eslint": "4.x.x",
"eslint-plugin-babel": "2.x.x"
},
"dependencies": {
"babel-core": "6.x.x",
"babel-loader": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-stage-2": "6.x.x"
},
"private": true
}