-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.14 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
{
"name": "clovis-node-exercise",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:alexisab/clovis-node-exercise.git",
"author": "Alexis Ablain <[email protected]>",
"license": "MIT",
"scripts": {
"build": "babel --source-maps true src --out-dir dist",
"start": "node --require babel-polyfill dist/index.js",
"watch": "nodemon -e js -w src -- --require babel-polyfill ./node_modules/.bin/babel-node src/index.js",
"lint": "eslint .",
"test": "mocha src/*.test.js --compilers js:babel-core/register",
"test:watch": "npm run test -- -w src/*.test.js"
},
"dependencies": {
"babel-cli": "^6.24.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.3.2",
"koa": "^2.0.0",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.0.1",
"lodash": "^4.17.2"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.16.0",
"eslint-config-clovis": "^1.0.2",
"mocha": "^5.0.0",
"nodemon": "^1.11.0",
"supertest": "^3.0.0"
}
}