-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "markus-cinema-client",
"version": "0.1.1",
"description": "JavaScript client for MARKUS Cinema System XML data.",
"main": "index.js",
"files": [
"index.js",
"lib/"
],
"repository": {
"url": "git@github.com:oliverviljamaa/markus-cinema-client.git",
"type": "git",
"fullname": "oliverviljamaa/markus-cinema-client"
},
"scripts": {
"lint": "eslint index.js src test",
"test": "yarn lint && jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"codeclimate": "yarn test:coverage && codeclimate-test-reporter < coverage/lcov.info",
"release-to-github": "release-to-github-with-changelog"
},
"author": "Oliver Viljamaa <oliver.viljamaa@gmail.com>",
"license": "MIT",
"devDependencies": {
"codeclimate-test-reporter": "^0.4.0",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^18.1.0",
"release-to-github-with-changelog": "^0.6.1"
},
"dependencies": {
"bluebird": "^3.4.7",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"xml2js": "^0.4.17"
}
}