-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
46
47
48
{
"name": "p-seeder-cli",
"version": "0.0.1",
"description": "P-Seeder Node CLI",
"main": "dist/seeder.js",
"scripts": {
"dev": "nodemon -w src --exec \"babel --plugins transform-regenerator src -d dist\"",
"test": "mocha --compilers js:babel-core/register --require babel-polyfill ./",
"lint": "eslint src",
"build": "babel src -d dist",
"start": "node dist/seeder.js"
},
"repository": {
"type": "git",
"url": "https://gitlab.dldl.fr/p-project/p-seeder-cli.git"
},
"author": "P-Project",
"license": "MIT",
"dependencies": {
"babel-plugin-transform-runtime": "^6.16.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"humanize-duration": "^3.10.0",
"prettysize": "0.0.3",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"webpack": "^2.7.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"eslint": "^3.9.1",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^3.1.2",
"nodemon": "^1.11.0"
},
"bin": {
"pseeder": "dist/seeder.js"
}
}