-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1002 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
34
35
36
37
38
{
"name": "@oncojs/pathwayviewer",
"version": "0.3.4",
"repository": {
"type": "git",
"url": "oncojs/pathwayviewer"
},
"description": "Component for visualization of Reactome pathways",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "7.0.0",
"babel-preset-es2015": "^6.16.0",
"babelify": "^7.3.0",
"budo": "^9.2.1",
"d3": "3",
"eslint": "3.8.1",
"insert-css": "^2.0.0",
"jquery": "3",
"lodash": "^4.17.4",
"node-sass": "^3.13.0",
"sassify": "^2.0.0"
},
"peerDependencies": {
"d3": "3",
"jquery": "3"
},
"dependencies": {
"deep-freeze": "0.0.1"
},
"main": "dist/index.js",
"scripts": {
"build": "npm run build:scripts && npm run build:styles",
"build:scripts": "babel src --out-dir dist",
"build:styles": "node-sass src/style.scss dist/style.css",
"prepublish": "npm run build",
"dev": "budo test/index.js --live --open -- -t [ sassify --autoInject=true ] -t babelify"
}
}