-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "template-npm-module",
"version": "1.0.0",
"description": "Template NPM Module",
"main": "index.js",
"exports": {
".": {
"require": "./lib/wol.js",
"import": "./esm/wol.mjs"
},
"./": "./"
},
"scripts": {
"build": "gen-esm-wrapper ./index.js ./esm/index.mjs",
"clean": "npm outdated && npm prune",
"docs": "jsdoc -c jsdocs.js -r",
"lint": "eslint .",
"test": "nyc --reporter=lcov --reporter=text-summary mocha",
"testd": "NODE_ENV=TESTING nyc mocha"
},
"directories": {
"test": "test"
},
"keywords": [
"template",
"npm",
"module"
],
"author": "MI-SEC",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mi-sec/template-npm-module.git"
},
"bugs": {
"url": "https://github.com/mi-sec/template-npm-module/issues"
},
"homepage": "https://github.com/mi-sec/template-npm-module#readme",
"devDependencies": {
"chai": "*",
"eslint": "*",
"gen-esm-wrapper": "*",
"jsdoc": "*",
"mocha": "*",
"nyc": "*",
"postman-jsdoc-theme": "*"
}
}