-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "estonian-cinema-api",
"version": "0.2.2",
"description": "JavaScript interface to get shows for Estonian cinemas.",
"main": "index.js",
"files": [
"index.js",
"lib/"
],
"repository": {
"url": "[email protected]:oliverviljamaa/estonian-cinema-api.git",
"type": "git",
"fullname": "oliverviljamaa/estonian-cinema-api"
},
"scripts": {
"lint": "eslint index.js lib __tests__ __mocks__",
"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 <[email protected]>",
"license": "MIT",
"devDependencies": {
"codeclimate-test-reporter": "^0.4.1",
"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": {
"lodash": "^4.17.4",
"markus-cinema-client": "^0.1.1"
}
}