-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 964 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
{
"name": "ifpa-api",
"version": "2.0.1",
"description": "International Flipper Pinball Association (IFPA) API",
"main": "src/ifpaApi.js",
"author": "Jonas Johansson <[email protected]>",
"license": "Unlicense",
"tags": [
"api",
"ifpa",
"node",
"wrapper",
"ifpa-api"
],
"scripts": {
"test": "npm run lint && mocha ./test/**/*.spec.js",
"test-only": "mocha ./test/**/*.spec.js",
"lint": "npm run prettier && npm run semistandard",
"prettier": "prettier --list-different --write '{{src,test}/**/*.js}'",
"semistandard": "semistandard --fix 'src/**/*.js' 'test/**/*.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/torsjonas/ifpa-api.git"
},
"dependencies": {
"request": "^2.81.0",
"request-promise": "^4.2.1"
},
"devDependencies": {
"chai": "^4.0.2",
"mocha": "^3.4.2",
"nock": "^9.0.13",
"prettier": "^1.4.4",
"semistandard": "^11.0.0"
}
}