-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.14 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
{
"name": "oubliette",
"version": "1.0.4",
"description": "A programmatic interface for npm",
"main": "index.js",
"keywords": [
"npm",
"programmatic",
"interface",
"api",
"command",
"typescript",
"install",
"view",
"link",
"exec",
"audit",
"publish"
],
"scripts": {
"coverage": "nyc --report html --reporter lcov --reporter text-summary zUnit",
"lint": "eslint .",
"lint-staged": "lint-staged",
"test": "zUnit",
"prepare": "husky"
},
"author": "Stephen Cresswell",
"license": "ISC",
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nyc": "^15.1.0",
"zunit": "^4.0.2"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acuminous/oubliette.git"
},
"bugs": {
"url": "https://github.com/acuminous/oubliette/issues"
},
"homepage": "https://acuminous.github.io/oubliette",
"types": "./index.d.ts"
}