-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
39 lines (39 loc) · 1.16 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
{
"name": "promises",
"version": "0.0.1",
"description": "NodeJS – Exploitez la puissance de JavaScript côté serveur (ENI, 2015)",
"repository": "https://github.com/vatesfr/eni-nodejs.git",
"author": "Olivier Lambert",
"private": true,
"scripts": {
"clean": "node ./npm_scripts/clean.js",
"creation": "node app/creation.js",
"dl-two-files": "node app/dl-two-files.js",
"generator": "babel app -d app & babel-node app/generator.js",
"lint": "eslint app",
"reinstall": "npm run clean && npm install -audit",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"bluebird": "^3.7.2",
"event-to-promise": "^0.8.0"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.3",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015-node5": "^1.2.0",
"eslint": "^8.48.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-promise": "6.1.1",
"got": "^14.4.5"
},
"engines": {
"node": ">=14.21.0",
"npm": ">=6.14.0"
}
}