-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 874 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
{
"name": "wakfu-autobuild",
"version": "0.4.2",
"description": "Pick the best set automatically",
"keywords": [
"wakfu"
],
"main": "index.js",
"files": [
"lib"
],
"scripts": {
"test": "eslint \"**/*.js\" --cache && c8 --reporter lcov mocha",
"preversion": "npm test",
"version": "npm run build && git add .",
"postversion": "git push --follow-tags && npm publish",
"build": "inlinejs README.md -o README.md"
},
"repository": "eight04/wakfu-autobuild",
"author": "eight04 <[email protected]>",
"license": "MIT",
"devDependencies": {
"c8": "^7.11.2",
"eslint": "^8.14.0",
"inline-js": "^0.8.0",
"mocha": "^9.2.2"
},
"dependencies": {
"cacache": "^16.0.6",
"camelcase": "^6.3.0",
"make-fetch-happen": "^10.1.2",
"neodoc": "^2.0.2",
"temp-dir": "^2.0.0"
},
"bin": "./cli.js"
}