-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 978 Bytes
/
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
{
"name": "nanoerror",
"version": "2.0.0",
"description": "Small module to create code errors with format support.",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"start": "node index.js",
"test": "uvu",
"posttest": "npm run lint",
"lint": "standard",
"prepublishOnly": "npm test"
},
"dependencies": {
"quick-format-unescaped": "^4.0.4"
},
"devDependencies": {
"standard": "^17.0.0",
"uvu": "^0.5.6"
},
"standard": {
"env": [
"node",
"browser"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/geut/nanoerror.git"
},
"keywords": [
"geut",
"module",
"errors"
],
"author": {
"name": "GEUT",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geut/nanoerror/issues"
},
"homepage": "https://github.com/geut/nanoerror#readme",
"publishConfig": {
"access": "public"
}
}