-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.26 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
{
"name": "assemblyscript-loader-loader",
"version": "1.1.0",
"description": "A webpack loader that compiles AssemblyScript to WebAssembly.",
"keywords": [
"webpack",
"loader",
"AssemblyScript",
"WebAssembly"
],
"homepage": "https://github.com/chenhebing/assemblyscript-loader-loader",
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/chenhebing/assemblyscript-loader-loader.git"
},
"bugs": {
"url": "https://github.com/chenhebing/assemblyscript-loader-loader/issues"
},
"dependencies": {
"@assemblyscript/loader": "^0.10.1",
"assemblyscript": "^0.12.3",
"loader-utils": "^2.0.0",
"memfs": "^3.2.0",
"schema-utils": "^2.7.0"
},
"scripts": {
"prepare": "rm -rf dist && tsc"
},
"lint-staged": {
"*.{js,ts}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "npm run prepare && lint-staged"
}
},
"devDependencies": {
"@ice/spec": "^1.0.1",
"@types/json-schema": "^7.0.5",
"@types/loader-utils": "^2.0.0",
"@types/webpack": "^4.41.17",
"eslint": "~7.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"typescript": "^3.9.5"
},
"license": "MIT"
}