forked from heimdalljs/heimdalljs-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "heimdalljs-graph",
"version": "0.3.4",
"main": "dist/cjs/index.js",
"jsnext:main": "dist/es6/index.js",
"scripts": {
"build": "node ./scripts/build.js",
"pretest": "npm run build",
"test": "mocha dist/cjs/tests/index.js",
"test:debug": "npm run build && mocha --no-timeouts debug dist/cjs/tests/index.js",
"prepublish": "npm run build"
},
"files": [
"src/",
"dist/",
"!dist/cjs/tests/",
"!dist/amd/tests/"
],
"repository": "git@github.com:heimdalljs/heimdalljs-graph",
"author": "David J. Hamilton, Stefan Penner",
"license": "MIT",
"devDependencies": {
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-runtime": "^6.20.0",
"chai": "^3.5.0",
"eslint": "^3.14.0",
"heimdalljs": "^0.2.3",
"mocha": "^3.2.0",
"rollup": "^0.37.0",
"rollup-plugin-babel": "^2.7.0",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-json": "^2.0.2",
"rollup-plugin-node-resolve": "^2.0.0"
}
}