-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 KB
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
{
"name": "genetic-algorithm",
"version": "0.0.1",
"description": "",
"main": "app/index.js",
"scripts": {
"start": "NODE_ENV=development node src/index.js",
"lint": "standard",
"lint:fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BinomeEPSI/genetic-algorithm.git"
},
"author": "EPSI Bordeaux <contact@epsi-bordeaux.fr>",
"license": "MIT",
"pre-commit": [
"lint"
],
"contributors": [
{
"email": "durade.romain@gmail.com",
"name": "Romain DURADE",
"url": "https://oriamn.com"
},
{
"email": "contact@sylvainmetayer.fr",
"name": "Sylvain METAYER",
"url": "https://sylvainmetayer.fr"
}
],
"maintainers": [
"Sylvain METAYER <contact@sylvainmetayer.fr> (https://sylvainmetayer.fr)",
"Romain DURADE <durade.romain@gmail.com> (https://oriamn.com)"
],
"bugs": {
"url": "https://github.com/BinomeEPSI/genetic-algorithm/issues"
},
"homepage": "https://github.com/BinomeEPSI/genetic-algorithm#readme",
"devDependencies": {
"pre-commit": "1.2.2",
"standard": "12.0.1"
},
"engines": {
"node": ">=6.0"
}
}