This repository was archived by the owner on May 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.31 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.31 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "llir",
"version": "0.0.1-beta.1",
"description": "LLIR: Graph Optimizing LLVM-targetted backend.",
"main": "lib/llir.js",
"scripts": {
"prepare": "npm run build",
"build": "cross-env NODE_ENV=production npm run dev",
"dev": "babel src/ -d lib/ -s",
"watch": "babel src/ -d lib/ -s --watch",
"clean": "rm -r lib",
"lint": "eslint src",
"docs": "esdoc",
"test": "mocha",
"coverage": "cross-env NODE_ENV=test nyc npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vsl-lang/LLIR.git"
},
"bin": {},
"author": "vihanb",
"license": "MIT",
"bugs": {
"url": "https://github.com/vsl-lang/LLIR/issues"
},
"homepage": "https://github.com/vsl-lang/LLIR#readme",
"dependencies": {
"arch": "^2.1.0",
"babel-runtime": "^7.0.0-beta.2",
"llvm-node": "^2.0.4"
},
"devDependencies": {
"babel-cli": "^7.0.0-beta.2",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-include": "^1.2.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-loop-optimizer": "^1.4.1",
"babel-plugin-root-import": "^5.1.0",
"babel-plugin-transform-class-properties": "^7.0.0-beta.2",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-optional-chaining": "^7.0.0-beta.2",
"babel-plugin-transform-runtime": "^7.0.0-beta.2",
"babel-plugin-wildcard": "^2.1.0",
"babel-preset-env": "^2.0.0-beta.2",
"babel-preset-optimized": "^1.0.2",
"babel-register": "^7.0.0-beta.2",
"cross-env": "^5.0.0",
"esdoc": "^1.0.3",
"esdoc-babel-7-plugin": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-importpath-plugin": "^1.0.1",
"esdoc-inject-script-plugin": "^1.0.0",
"esdoc-inject-style-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^3.19.0",
"mocha": "^3.4.2",
"npm": "^4.6.1",
"nyc": "^10.3.2"
},
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
],
"include": [
"src/vsl/**/*.js"
],
"exclude": [],
"all": true,
"sourceMap": false,
"instrument": false
}
}