-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "ts-describe-action",
"version": "2.2.0",
"description": "describe redux actions with less boilerplate and leverage typesafety",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/twop/ts-describe-action.git"
},
"bugs": {
"url": "https://github.com/twop/ts-describe-action/issues"
},
"homepage": "https://github.com/twop/ts-describe-action#readme",
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg",
{
"exclude": [
"__tests__/**/*.*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
},
"scripts": {
"test": "jest",
"pika-pack": "pack build",
"pika-publish": "pack publish",
"typecheck": "tsc --noEmit",
"version": "npx @pika/pack build"
},
"dependencies": {},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-typescript": "^7.3.3",
"@pika/pack": "^0.4.0",
"@pika/plugin-build-node": "^0.4.0",
"@pika/plugin-build-web": "^0.4.0",
"@pika/plugin-ts-standard-pkg": "^0.4.0",
"@types/jest": "^24.0.15",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"esm": "3.2.17",
"typescript": "3.5.3",
"ts-node": "^8.3.0"
}
}