-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 964 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
{
"name": "linearscan",
"version": "5.1.3",
"description": "Linearscan register allocator",
"main": "lib/linearscan.js",
"scripts": {
"test": "jscs lib/**/*.js test/*.js && jshint lib/**/*.js && mocha --reporter spec test/**/*-test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/indutny/linearscan.js"
},
"keywords": [
"linearscan",
"register",
"allocator"
],
"author": "Fedor Indutny <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/indutny/linearscan.js/issues"
},
"homepage": "https://github.com/indutny/linearscan.js",
"devDependencies": {
"assert-text": "^1.1.0",
"jscs": "^2.0.0",
"jshint": "^2.8.0",
"mocha": "^2.2.5"
},
"dependencies": {
"binary-search": "^1.2.0",
"bit-set.js": "^1.1.0",
"debug": "^2.2.0",
"json-pipeline": "^3.0.0",
"json-pipeline-reducer": "^1.4.0",
"parallel-move": "^1.0.0"
}
}