-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 967 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
{
"name": "algo-ordonnancement",
"version": "0.0.1",
"description": "Système temps réel TP",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/mocha/bin/_mocha tests.js --use_strict --exit",
"lint": "./node_modules/.bin/standard",
"lint-fix": "./node_modules/.bin/standard --fix",
"start": "npm run earlier && npm run least-slack",
"earlier": "node earlier-deadline-first/index.js",
"least-slack": "node least-slack-scheduling/index.js"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BinomeEPSI/algo-ordonnancement.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/BinomeEPSI/algo-ordonnancement/issues"
},
"homepage": "https://github.com/BinomeEPSI/algo-ordonnancement#readme",
"devDependencies": {
"chai": "4.2.0",
"mocha": "6.2.0",
"pre-commit": "1.2.2",
"standard": "12.0.1"
}
}