-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.8 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
{
"name": "pika-plugin-inline-env",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cd test && npm t",
"ts-check": "tsc --noEmit",
"build": "pika build",
"lint": "eslint 'src/**/*.ts'",
"version": "npm run ts-check && npm run build"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomicpages/pika-plugin-inline-env.git"
},
"keywords": [],
"author": "Dennis Thompson",
"license": "MIT",
"bugs": {
"url": "https://github.com/atomicpages/pika-plugin-inline-env/issues"
},
"homepage": "https://github.com/atomicpages/pika-plugin-inline-env#readme",
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
]
]
},
"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",
"@types/node": "^14.0.23",
"eslint": "^7.4.0",
"husky": "^4.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"typescript": "^4.0.0"
},
"prettier": "@djthoms/prettier-config",
"eslintConfig": {
"env": {
"node": true,
"es6": true
},
"extends": [
"@djthoms/eslint-config",
"@djthoms/eslint-config/esmodules",
"@djthoms/eslint-config/typescript"
]
},
"husky": {
"hooks": {
"pre-push": "npm-run-all -p ts-check test lint"
}
}
}