-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "gcp-js",
"version": "0.1.0-alpha.4",
"description": "A Google Cloud Print JavaScript Client.",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"browser": "dist/index.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/ExiaSR/gcp-js"
},
"author": "Michael Lin <[email protected]> (https://michaellin.me)",
"license": "MIT",
"private": false,
"files": [
"dist",
"src"
],
"scripts": {
"flow": "flow",
"lint": "eslint src --fix",
"build": "rollup -c",
"format": "prettier --write \"src/**/*.js\""
},
"dependencies": {
"isomorphic-unfetch": "^3.0.0",
"qs": "^6.6.0"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/preset-env": "^7.2.0",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"flow-bin": "^0.88.0",
"flow-typed": "^2.5.1",
"prettier": "^1.15.3",
"rollup": "^0.67.4",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^3.0.0"
}
}