-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 949 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
{
"name": "wasm-disassembler",
"version": "0.0.0",
"description": "Disassembler of wasm binaries",
"main": "index.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "mocha -r ts-node/register test/unit/**/*.test.ts",
"test-integration": "mocha -r ts-node/register test/integration/**/*.integration.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoseFMP/wasm-diassembler.git"
},
"keywords": [
"webassembly"
],
"author": "Jose F. Mingorance-Puga",
"license": "ISC",
"bugs": {
"url": "https://github.com/JoseFMP/wasm-diassembler/issues"
},
"homepage": "https://github.com/JoseFMP/wasm-diassembler#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"chai": "^4.2.0",
"fs": "0.0.1-security",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
}
}