-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.27 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
{
"name": "tinv-api",
"version": "1.0.0",
"description": "Wrapper around TInv (FatturaPA & B2B) webservices",
"main": "index.js",
"homepage": "https://github.com/andxor/tinv-api",
"repository": {
"type": "git",
"url": "git+https://github.com/andxor/tinv-api.git"
},
"bugs": "https://github.com/andxor/tinv-api/issues",
"author": "Lapo Luchini <[email protected]>",
"license": "ISC",
"engines": {
"node": ">=6.17.1"
},
"dependencies": {
"superagent": "^8.1.2"
},
"devDependencies": {
"tap-spec": "^5.0.0",
"tape": "^4.9.1",
"tape-nock": "^1.6.0"
},
"files": [
"index.js"
],
"scripts": {
"test": "node test/test.js local | tap-spec",
"test-update": "rm -rf test/nock ; node test/test.js | tap-spec"
},
"eslintConfig": {
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2020
},
"extends": [
"eslint:recommended"
],
"rules": {
"strict": [ "error", "global" ],
"indent": [ "warn", 4 ],
"linebreak-style": [ "warn", "unix" ],
"quotes": [ "warn", "single" ],
"semi": [ "warn", "always" ],
"comma-dangle": [ "error", "always-multiline" ],
"no-trailing-spaces": "warn",
"no-unused-vars": "warn"
}
}
}