-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1016 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
39
{
"name": "@buggyorg/nitro",
"version": "0.2.1",
"description": "An optimizer for Buggy control flow graphs.",
"main": "lib/api.js",
"bin": {
"nitro": "./lib/cli.js"
},
"scripts": {
"test": "node_modules/mocha/bin/mocha --compilers js:babel-register && standard src/**/*.js",
"build": "babel src -d lib",
"prepublish": "babel src -d lib"
},
"repository": {
"type": "git",
"url": "[email protected]:BuggyOrg/nitro.git"
},
"author": "Maik Marschner",
"license": "MIT",
"dependencies": {
"@buggyorg/component-library": "^0.3.2",
"@buggyorg/functional": "^0.1.10",
"@buggyorg/graphtools": "^0.2.16",
"commander": "^2.9.0",
"get-stdin": "^5.0.1",
"graphlib": "^1.0.7",
"handlebars": "^4.0.5",
"lodash": "^4.13.0",
"object-hash": "^1.1.2"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"chai": "^3.4.1",
"mocha": "^2.3.3",
"standard": "^7.1.2"
}
}