-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 972 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
{
"scripts": {
"test": "mocha",
"build-for-browser": "browserify browser/polyfill.min.js src/graph.js --noparse=browser/polyfill.min.js --standalone Graph -t [ babelify --presets [ '@babel/preset-env' ] ] | uglifyjs > browser/proper-graph.min.js"
},
"name": "proper-graph",
"version": "2.5.2",
"description": "A library that aims to make graphs easy to use",
"main": "src/graph.js",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.0.0-beta.55",
"@babel/preset-env": "^7.0.0-beta.55",
"babelify": "^9.0.0",
"browserify": "^16.2.2",
"mocha": "^5.2.0",
"uglify-js": "^3.4.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minderov/proper-graph.git"
},
"keywords": [
"graph"
],
"author": "Alexander Minderov",
"license": "ISC",
"bugs": {
"url": "https://github.com/minderov/proper-graph/issues"
},
"homepage": "https://github.com/minderov/proper-graph#readme"
}