-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
75 lines (75 loc) · 2.18 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
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
{
"name": "Wasmnizer-ts",
"version": "0.0.1",
"description": "",
"main": "index.js",
"type": "module",
"directories": {
"doc": "doc",
"test": "test"
},
"scripts": {
"postinstall": "npm run setup-hooks",
"compile": "",
"pretest": "npm run compile",
"test": "mocha",
"test:integration": "mocha tests/integration/*.test.ts",
"test:samples": "mocha tests/samples/*.test.ts",
"test:unit": "mocha 'tests/unit/*.test.ts'",
"cover": "c8 npm run test:unit",
"lint": "npx lint-staged",
"setup-hooks": "node scripts/link_hooks.js",
"build": "npx tsc && npm run build:lib",
"release": "npx tsc -p tsconfig.release.json && npm run build:lib",
"build:lib": "node scripts/copy_lib_files.js build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intel/Wasmnizer-ts.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"log4js": "^6.8.0",
"long": "^5.2.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/minimist": "^1.2.2",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.5",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@typescript-eslint/utils": "^5.33.0",
"binaryen": "^116.0.0",
"c8": "^7.12.0",
"chai": "^4.3.6",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-autolinkable-stylish": "1.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.0.3",
"minimist": "^1.2.6",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"sinon": "^14.0.0",
"stacktrace-js": "^2.0.2"
},
"lint-staged": {
"*.ts": [
"eslint --ignore-path .eslintignore --config .eslintrc.json --fix --quiet '**/*.ts'",
"prettier --ignore-path .prettierignore --config .prettierrc.json --write '**/*.ts'"
]
},
"bugs": {
"url": "https://github.com/intel/Wasmnizer-ts/issues"
},
"homepage": "https://github.com/intel/Wasmnizer-ts#readme"
}