-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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": "ml-spectra-test",
"version": "0.0.1",
"description": "",
"main": "./src/index.js",
"files": [
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"test": "run-s testonly eslint",
"testonly": "jest",
"watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/mljs/spectra-test.git"
},
"keywords": [
"machine",
"learning",
"data",
"mining",
"datamining"
],
"author": "Océane Patiny <oceane@patiny.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/spectra-test/issues"
},
"homepage": "https://github.com/mljs/spectra-test#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-cheminfo": "^1.17.2",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jest": "^21.15.0",
"jest": "^23.5.0",
"npm-run-all": "^4.1.2"
},
"dependencies": {
"debug": "^3.1.0",
"spectrum-generator": "^2.0.1"
}
}