-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "jsgraph-helper",
"version": "0.0.0",
"description": "",
"main": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "rollup -c",
"test": "npm run test-only && npm run eslint",
"test-coverage": "npm run test-only --coverage",
"test-only": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/jsgraph-helper.git"
},
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/jsgraph-helper/issues"
},
"homepage": "https://github.com/cheminfo/jsgraph-helper#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-cheminfo": "^1.18.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.0.0",
"jest": "^23.6.0",
"npm-run-all": "^4.1.3"
},
"dependencies": {
"jcampconverter": "^2.10.2"
}
}