-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.35 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
{
"name": "buildin-mc2wasm",
"version": "1.0.0",
"description": "Built-in functions and memory calls for the mc2wasm module",
"main": "./bin/classes/macharray/MachRuntime.js",
"types": "lib/index",
"scripts": {
"compile": "./node_modules/mocha/bin/gulp compile",
"test-js": "./node_modules/mocha/bin/_mocha --ui bdd ./test/node/**/*.test.js ./test/node/**/**/*.test.js --timeout 5000",
"test-ts":"./node_modules/mocha/bin/_mocha -r ts-node/register test/node/ts/**/*.test.ts --timeout 5000",
"test":"npm run test-js && npm run test-ts",
"compile-watch": "gulp compile-watch"
},
"author": "David Herrera",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^10.14.7",
"@webassemblyjs/ast": "^1.8.5",
"@webassemblyjs/wasm-parser": "^1.8.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"colors": "^1.3.3",
"express": "^4.17.0",
"gulp": "^3.9.1",
"gulp-mocha": "^5.0.0",
"gulp-shell": "^0.6.5",
"gulp-typescript": "^5.0.1",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"shelljs": "^0.8.3",
"sinon": "^4.5.0",
"sinon-chai": "^3.3.0",
"ts-node": "^7.0.1",
"typescript": "^2.9.2",
"typescript-eslint-parser": "^16.0.1"
},
"dependencies": {
"@types/webassembly-js-api": "0.0.2",
"yargs": "^12.0.5"
}
}