-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 922 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
{
"name": "apimtpl",
"version": "0.0.10",
"author": "Pascal",
"license": "MIT",
"private": true,
"main": "./lib/apimtpl.js",
"bin": {
"apimtpl": "./bin/apimtpl-cli.js"
},
"scripts": {
"lint": "eslint bin/ lib/ test/",
"test": "mocha --check-leaks test/",
"prepublish": "yarn lint && yarn test"
},
"dependencies": {
"ajv": "8.5.0",
"argparse": "^2.0.1",
"fs-extra": "^10.0.0",
"js-yaml": "^4.1.0",
"pkginfo": "^0.4.1"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.27.0",
"mocha": "^8.4.0"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"extends": [
"eslint:recommended"
],
"env": {
"node": true,
"es6": true
},
"rules": {
"no-console": "off"
}
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid"
}
}