-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1.61 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": "node-go-require",
"version": "2.0.0",
"description": "Load Google GO files as any javascript modules under nodeJS runtime.",
"author": {
"name": "Sagie Gur-Ari",
"email": "[email protected]"
},
"license": "Apache-2.0",
"homepage": "http://github.com/sagiegurari/node-go-require",
"repository": {
"type": "git",
"url": "http://github.com/sagiegurari/node-go-require.git"
},
"bugs": {
"url": "http://github.com/sagiegurari/node-go-require/issues"
},
"keywords": [
"go",
"require"
],
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test/spec"
},
"scripts": {
"clean": "rm -Rf ./.nyc_output ./coverage",
"format": "js-beautify --config ./.jsbeautifyrc --file ./*.js ./lib/**/*.js ./test/**/*.js",
"lint-js": "eslint ./*.js ./lib/**/*.js ./test/**/*.js",
"lint-css": "stylelint --allow-empty-input ./docs/**/*.css",
"lint": "npm run lint-js && npm run lint-css",
"jstest": "mocha --exit ./test/spec/**/*.js",
"coverage": "nyc --reporter=html --reporter=text --reporter=lcovonly --check-coverage=true mocha --exit ./test/spec/**/*.js",
"docs": "jsdoc2md lib/**/*.js > ./docs/api.md",
"test": "npm run clean && npm run format && npm run lint && npm run docs && npm run coverage",
"postpublish": "git fetch && git pull"
},
"dependencies": {
"node.extend": "^2"
},
"devDependencies": {
"chai": "^4",
"eslint": "^8",
"js-beautify": "^1",
"jsdoc-to-markdown": "^7",
"mocha": "^9",
"nyc": "^15",
"rimraf": "^3",
"stylelint": "^13",
"stylelint-config-standard": "^22"
}
}