-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.46 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
{
"name": "pinki",
"version": "0.0.3",
"description": "Pinki is a CLI for signing and verifying software releases.",
"bin": {
"pinki": "bin/pinki"
},
"repository": {
"type": "git",
"url": "https://github.com/twuni/pinki"
},
"main": "lib/cjs/index.js",
"scripts": {
"build": "pak-cli build",
"docs": "pak-cli docs",
"lint": "pak-cli lint",
"test": "pak-cli test",
"test:coverage": "pak-cli test:coverage"
},
"author": {
"email": "[email protected]",
"name": "Devin Canterberry"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"c8": "^7.11.0",
"eslint": "^8.6.0",
"eslint-plugin-ante": "^1.1.0",
"marked": "^4.0.8",
"mocha": "^9.1.3",
"pak-cli": "^0.0.6"
},
"module": "lib/esm/index.mjs",
"sideEffects": false,
"exports": {
".": {
"import": "./lib/esm/index.mjs",
"require": "./lib/cjs/index.js"
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": "> 0.25%, not dead"
}
]
]
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:ante/recommended",
"plugin:ante/style"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"eslint-plugin-ante"
]
}
}