forked from deislabs/yo-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.4 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
{
"name": "generator-wasm",
"version": "0.0.4",
"preview": true,
"description": "Publish programs as WASM modules",
"homepage": "https://github.com/deislabs/yo-wasm",
"author": {
"name": "itowlson",
"email": "[email protected]"
},
"files": [
"generators",
"templates"
],
"main": "generators/index.js",
"keywords": [
"wasm",
"yeoman-generator"
],
"devDependencies": {
"@types/mkdirp": "^1.0.1",
"@types/shelljs": "^0.8.8",
"@types/yeoman-generator": "^4.11.3",
"eslint": "^6.6.0",
"jest": "^26.1.0",
"typescript": "^3.8.0",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.7.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"chalk": "^2.1.0",
"hippo-js": "https://github.com/deislabs/hippo-client-node/releases/download/v0.0.2/hippo-js-0.0.2.tgz",
"mkdirp": "^1.0.4",
"shelljs": "^0.8.4",
"yeoman-generator": "^2.0.1",
"yosay": "^2.0.1"
},
"jest": {
"testEnvironment": "node"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"env": {
"jest": true,
"node": true
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"prepare": "npm run compile",
"pretest": "eslint .",
"test": "jest"
},
"repository": "https://github.com/deislabs/yo-wasm",
"license": "Apache-2.0"
}