-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 948 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 948 Bytes
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
{
"name": "@code-vicar/graphlib",
"version": "1.2.0",
"description": "General purpose adjacency list graph",
"main": "lib/index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"test": "mocha -r @babel/register test/**/*-test.js",
"prepare": "npm run compile && npm run bundle",
"compile": "rm -rf lib && babel src -d lib",
"bundle": "rm -rf bundle && webpack --mode=production lib/index.js -o ./bundle/graphlib.js"
},
"repository": {
"type": "git",
"url": "https://github.com/code-vicar/graphlib.git"
},
"author": "Scott Vickers",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"lodash.curry": "^4.1.1"
}
}