-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 KB
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
{
"name": "google-tasks-api",
"version": "1.2.0",
"description": "Google Tasks API for humans",
"main": "dist/index.min.js",
"scripts": {
"test": "npm run build && karma start",
"build": "rollup -c",
"predeploy": "npm run build",
"deploy": "np",
"lint": "eslint lib/",
"lint:fix": "eslint --fix lib/"
},
"keywords": [
"google",
"google tasks",
"google tasks api"
],
"author": "Eliran Pe'er (eliran013@gmail.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bluzi/google-tasks-api"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"karma": "^2.0.2",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"mocha": "^5.2.0",
"np": "^3.0.4",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.4"
},
"files": [
"dist/**"
]
}