-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 943 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
{
"name": "@buggyorg/typify",
"version": "0.1.12",
"description": "Applies a type scheme to a weakly typed buggy graph.",
"main": "lib/api.js",
"bin": {
"buggy-typify": "lib/cli.js",
"buggy-typify-relabel": "lib/cliDebug.js"
},
"scripts": {
"test": "mocha --no-timeouts --compilers js:babel-register",
"build": "rm -rf lib && babel src -d lib",
"prepublish": "rm -rf lib && babel src -d lib"
},
"author": "Maximilian Klein",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"standard": "^6.0.8"
},
"dependencies": {
"@buggyorg/graphtools": "^0.4.0-pre.39",
"@buggyorg/rewrite": "^0.2.11",
"cli-ext": "^1.1.0",
"debug": "^2.6.0",
"graphlib": "^2.1.0",
"lodash": "^4.11.1"
}
}