-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 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
44
45
46
47
48
49
50
51
52
{
"name": "kou",
"version": "0.3.0",
"description": "A minimal language compiled into wasm bytecode",
"main": "dist/kouc",
"bin": {
"kou": "bin/kou",
"kouc": "bin/kouc"
},
"scripts": {
"build": "tsc",
"prettier": "prettier --parser typescript --single-quote --trailing-comma all '{src,test}/**/*.ts'",
"format": "npm run prettier -- --write",
"format:dry": "npm run prettier -- -l",
"test": "ts-node --no-cache --type-check test",
"release": "npm run build && npm publish"
},
"husky": {
"hooks": {
"pre-commit": "npm run format:dry",
"pre-push": "npm run format:dry && npm run build && npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/utatti/kou.git"
},
"author": "Hyunjae Jun <noraesae+dev@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/utatti/kou/issues"
},
"homepage": "https://github.com/utatti/kou",
"devDependencies": {
"husky": "^2.2.0",
"prettier": "1.15.2",
"ts-node": "7.0.1",
"typescript": "3.1.6"
},
"dependencies": {
"@types/node": "10.12.6",
"@types/tmp": "0.0.33",
"@types/webassembly-js-api": "0.0.1",
"@types/yargs": "12.0.1",
"chalk": "2.4.1",
"hexy": "0.2.11",
"previewable-iterator": "0.1.1",
"s-exify": "^0.1.0",
"wabt": "^1.0.10",
"yargs": "12.0.2"
}
}