-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.17 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
{
"name": "penemue",
"version": "0.0.1",
"type": "module",
"description": "",
"exports": "./index.js",
"engines": {
"node": ">=14"
},
"scripts": {
"test:unit": "c8 node ./getIframes.test.js",
"test:e2e": "c8 node end-to-end-test/*.test.js",
"report:coverage": "c8 report --reporter=lcov",
"lint": "eslint .",
"precommit": "lint-staged"
},
"bin": {
"penemue": "./index.js"
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyusu/Penemue.git"
},
"author": "kyusu",
"license": "MIT",
"bugs": {
"url": "https://github.com/kyusu/Penemue/issues"
},
"homepage": "https://github.com/kyusu/Penemue#readme",
"dependencies": {
"crocks": "0.12.4",
"get-stdin": "9.0.0",
"ramda": "0.27.2",
"url-assembler": "2.1.1"
},
"devDependencies": {
"c8": "10.1.2",
"coveralls": "3.1.1",
"eslint": "8.57.1",
"eslint-config-cleanjs": "4.0.0",
"eslint-plugin-better": "0.1.5",
"eslint-plugin-fp": "2.3.0",
"eslint-plugin-import": "2.31.0",
"husky": "8.0.3",
"lint-staged": "15.2.10",
"tape": "5.9.0"
}
}