-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.67 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
{
"name": "@djthoms/pika-plugin-build-node",
"version": "1.3.0",
"description": "A @pika/pack plugin: an extension of @pika/plugin-build-node that supports rollup plugin customization.",
"main": "pkg/dist-node/index.js",
"scripts": {
"test": "cd test && npm t",
"build": "pika build",
"clean": "rimraf pkg/**",
"lint": "eslint 'src/**/*.{ts,js}'",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/atomicpages/pika-plugin-build-node.git"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-push": "npm t"
}
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-json": "^4.0.0"
},
"peerDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.8.0"
},
"devDependencies": {
"@djthoms/eslint-config": "^3.0.0",
"@djthoms/prettier-config": "^2.0.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@rollup/plugin-strip": "^1.3.3",
"@types/node": "^13.13.12",
"eslint": "^7.4.0",
"husky": "^4.0.0",
"prettier": "^2.0.0",
"rimraf": "^3.0.0",
"typescript": "^3.9.6"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
]
]
},
"prettier": "@djthoms/prettier-config"
}