-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.33 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
49
50
51
52
53
54
55
56
{
"name": "reaction",
"version": "0.0.0",
"description": "",
"main": "lib/index.js",
"module": "src/index.js",
"browser": {
"./lib/index.js": "./src/index.js",
"./src/svg.js": "./src/svg-browser.js"
},
"files": [
"lib",
"src"
],
"scripts": {
"build": "cheminfo build",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "rollup -c",
"test": "run-s testonly eslint",
"testonly": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/reaction.git"
},
"keywords": [],
"author": "Jefferson Hernandez",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/reaction/issues"
},
"homepage": "https://github.com/cheminfo/reaction#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"cheminfo-tools": "^1.20.0",
"eslint": "^4.10.0",
"eslint-config-cheminfo": "^1.8.0",
"eslint-plugin-no-only-tests": "^2.0.0",
"jest": "^21.2.1",
"npm-run-all": "^4.1.1",
"openchemlib": "5.6.1",
"rollup": "^0.50.0"
},
"dependencies": {
"rxn-parser": "0.0.2",
"svg.js": "^2.6.3",
"svgdom": "0.0.15",
"jsdom": "11.3.0",
"jsdom-global": "3.0.2"
}
}