-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "js2wasm",
"version": "0.0.1",
"description": "JavaScript to WebAssembly cross compiler",
"main": "index.js",
"license": "MIT",
"directories": {
"test": "test"
},
"scripts": {
"lint": "tslint src/**/*.ts test/**/*.ts",
"test": "mocha --require ts-node/register \"test/**/*.ts\" --exclude \"test/time_limited/**/*.ts\"",
"test_all": "mocha --require ts-node/register \"test/**/*.ts\"",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/InverseIntegral/js2wasm.git"
},
"bugs": {
"url": "https://github.com/InverseIntegral/js2wasm/issues"
},
"homepage": "https://github.com/InverseIntegral/js2wasm#readme",
"devDependencies": {
"@babel/parser": "^7.1.2",
"@babel/types": "^7.1.2",
"@types/chai": "^4.1.5",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.1",
"@types/webassembly-js-api": "0.0.1",
"awesome-typescript-loader": "^5.2.1",
"binaryen": "^51.0.0",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
}
}