-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.59 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": "zendesk-client",
"version": "0.0.10",
"description": "JS library for the Zendesk API",
"files": ["es", "lib", "umd"],
"main": "lib/index.js",
"module": "es/index.js",
"browser": "umd/zendesk-client",
"scripts": {
"build": "node ./tools/build.js",
"watch": "babel ./src -d ./lib --ignore __tests__ --watch",
"clean": "git clean -f -d -X .",
"prepublishOnly": "node ./tools/build.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format":
"prettier --config .prettierrc --write 'src/**/*.{js,jsx,json,css}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roger-rodriguez/zendesk-client.git"
},
"keywords": ["zendesk", "zendesk api", "zendesk client"],
"author": "Roger Rodriguez",
"license": "MIT",
"bugs": {
"url": "https://github.com/roger-rodriguez/zendesk-client/issues"
},
"homepage": "https://github.com/roger-rodriguez/zendesk-client#readme",
"devDependencies": {
"prettier": "1.13.0",
"babel-cli": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-plugin-dev-expression": "0.2.1",
"babel-plugin-external-helpers": "6.22.0",
"gzip-size": "4.1.0",
"pretty-bytes": "4.0.2",
"rollup": "0.58.2",
"rollup-plugin-babel": "3.0.4",
"rollup-plugin-commonjs": "9.1.0",
"rollup-plugin-json": "2.3.0",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-replace": "2.0.0",
"rollup-plugin-uglify": "3.0.0"
},
"dependencies": {
"bluebird": "3.5.1",
"isomorphic-fetch": "2.2.1",
"warning": "3.0.0"
}
}