-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.13 KB
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
{
"name": "@djthoms/pika-plugin-build-web",
"version": "1.3.1",
"description": "",
"main": "index.js",
"scripts": {
"pretest": "npm run build",
"test": "cd test && npm t",
"ts-check": "tsc --noEmit",
"build": "pika build",
"prepare": "husky install",
"version": "npm run ts-check && npm run build"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomicpages/pika-plugin-build-web.git"
},
"author": "Dennis Thompson",
"license": "MIT",
"bugs": {
"url": "https://github.com/atomicpages/pika-plugin-build-web/issues"
},
"homepage": "https://github.com/atomicpages/pika-plugin-build-web#readme",
"peerDependencies": {
"@pika/pack": ">=0.5.0",
"@pika/plugin-build-web": ">=0.8.1",
"typescript": ">=3.5.0"
},
"devDependencies": {
"@djthoms/eslint-config": "^2.1.0",
"@djthoms/prettier-config": "^2.0.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@rollup/plugin-strip": "^1.3.3",
"@semantic-release/git": "^9.0.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog-emoji": "^0.1.0",
"eslint": "^6.8.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.0.0",
"semantic-release": "^17.4.3",
"typescript": "^3.9.6"
},
"prettier": "@djthoms/prettier-config",
"lint-staged": {
".{js,json,ts}": [
"prettier --write",
"eslint --fix"
],
".{json,yml}": "prettier --write"
},
"dependencies": {
"@rollup/plugin-json": "^4.0.0"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
]
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog-emoji"
}
}
}