-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "web-cpp",
"version": "0.7.0",
"description": "a c++ compiler in typescript",
"main": "index.js",
"scripts": {
"build": "node build/build.js && tsc",
"test": "mocha test/**/*.test.js",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"coverage": "nyc --reporter=lcov --reporter=text mocha test/**/*.test.js",
"coveralls": "nyc --reporter=text-lcov mocha test/**/*.test.js | coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/zurl/web-cpp.git"
},
"author": "Chengyi Zhang",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zurl/web-cpp/issues"
},
"homepage": "https://github.com/zurl/web-cpp#readme",
"devDependencies": {
"@types/bn.js": "^4.11.1",
"@types/long": "^4.0.0",
"@types/node": "^10.5.1",
"@types/pegjs": "^0.10.1",
"@types/source-map": "0.5.0",
"@types/webassembly-js-api": "^0.0.2",
"babel-core": "^6.26.3",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"cssnano": "^4.0.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.1.0",
"parcel": "^1.9.7",
"recursive-readdir": "^2.2.2",
"typescript": "^3.2.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"bn.js": "^4.11.8",
"file-saver": "^2.0.0",
"long": "^4.0.0",
"math": "^0.0.3",
"pegjs": "^0.10.0",
"source-map": "^0.5.6"
}
}