-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.29 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
76
77
78
{
"name": "svelte-draft",
"version": "0.2.1",
"description": "Develop svelte app in typedraft",
"author": "mistlog",
"license": "MIT",
"keywords": [
"svelte",
"typescript",
"typedraft",
"literator",
"transcriber",
"compiler",
"literate programming",
"javascript",
"dsl"
],
"files": [
"dist"
],
"bin": {
"sd": "dist/cli/cli.js"
},
"main": "src/index.js",
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mistlog/svelte-draft"
},
"homepage": "https://github.com/mistlog/svelte-draft",
"scripts": {
"pretest": "npm run clean:ts && npm run transcribe",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prebuild": "npm run clean:dist && npm run clean:ts",
"build": "npm run transcribe && tsc",
"postbuild": "npm run clean:ts",
"dev": "npm run transcribe:watch",
"transcribe": "td ./src",
"transcribe:watch": "td ./src -w",
"release": "npm run build && npm pack",
"format": "prettier --write ./src ./test ./script ./utility ./cli",
"check:format": "prettier --check ./src ./test ./script ./utility ./cli",
"clean:ts": "ts-node ./script/clean-ts.ts",
"clean:dist": "ts-node ./script/clean-dist.ts"
},
"dependencies": {
"@babel/core": "7.6.2",
"@babel/preset-typescript": "^7.8.3",
"@endemolshinegroup/cosmiconfig-typescript-loader": "^3.0.0",
"commander": "^4.1.1",
"cosmiconfig": "^6.0.0",
"filewalker": "^0.1.3",
"fs-extra": "^8.1.0",
"node-watch": "^0.6.3",
"svelte": "^3.31.0",
"typedraft": "^0.2.4"
},
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.18",
"@types/node": "^12.12.14",
"@types/prettier": "^1.19.0",
"draft-dsl-match": "^0.1.0",
"husky": "^4.2.5",
"jest": "^24.9.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}