-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
35 lines (35 loc) · 998 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
{
"name": "files",
"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",
"dirs": "node app/directories.js",
"files": "node app/files.js",
"lint": "eslint app",
"paths": "node app/paths.js",
"reinstall": "npm run clean && npm install -audit",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "node app/watch.js"
},
"dependencies": {
"absolute-path": "0.0.0",
"chokidar": "^3.6.0",
"mkdirp": "^3.0.1",
"rimraf": "^5.0.7"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1"
},
"engines": {
"node": ">=14.21.0",
"npm": ">=6.14.0"
}
}