-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.78 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
{
"name": "supers",
"version": "0.3.2",
"repository": {
"type": "git",
"url": "https://github.com/tripu/superscript"
},
"homepage": "https://github.com/tripu/superscript/blob/master/.github/README.md",
"author": {
"name": "tripu",
"email": "[email protected]",
"url": "https://tripu.info/"
},
"description": "A library of miscellaneous JavaScript utilities",
"license": "MIT",
"main": "server.js",
"files": [
"utils.js",
"superscript.js"
],
"bugs": {
"url": "https://github.com/tripu/superscript/issues",
"email": "[email protected]"
},
"private": false,
"preferGlobal": false,
"scripts": {
"audit": "npm audit --audit-level=high",
"browserify": "browserify server.js -s superscript -o superscript.js",
"build": "npm run audit && npm run browserify && npm run jsdoc",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"hint": "jshint server.js utils.js tests.js",
"jsdoc": "jsdoc2md server.js | sed 's/^### $//' > .github/README.md",
"postpublish": "rm -f README.md",
"posttest": "npm run hint",
"prepublishOnly": "cp .github/README.md .",
"test": "nyc --reporter=html --reporter=text mocha \"tests.js\" --timeout 2000 --reporter spec --colors"
},
"engines": {
"node": ">= 16",
"npm": ">= 7"
},
"jshintConfig": {
"esversion": 6,
"strict": true
},
"nyc": {
"include": [
"server.js",
"utils.js"
]
},
"jsdoc2md": {
"template": "template.hbs",
"global-index-format": "grouped",
"example-lang": "js",
"heading-depth": "3",
"param-list-format": "list"
},
"devDependencies": {
"browserify": "^17.0.0",
"coveralls": "^3.1.1",
"jsdoc-to-markdown": "^9.0.0",
"jshint": "^2.13.0",
"mocha": "^10.1.0",
"nyc": "^17.0.0"
}
}