-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
43 lines (43 loc) · 1.36 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
{
"license": "GPL-3.0",
"scripts": {
"test": "testem ci",
"start": "mocha --compilers 'coffee:coffee-script/register' --watch",
"test-debug": "DEBUG=littlebits* npm start",
"dev": "npm start",
"devall": "testem",
"dist": "browserify dist/index.js -o dist/littleBitsAPI.js && uglifyjs dist/littleBitsAPI.js > dist/littleBitsAPI.min.js",
"download-routes": "node scripts/download-routes.js > lib/routes.js",
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {
"lodash.transform": "^3.0.0",
"merge": "^1.2.0",
"superagent": "^1.4.0",
"to-snake-case": "^0.1.2"
},
"repository": {
"type": "git",
"url": "git://github.com/littlebits/cloud-client-api-http.git"
},
"author": "Jason Kuhrt <[email protected]> (http://jasonkuhrt.com/)",
"name": "@littlebits/cloud-http",
"homepage": "https://github.com/littlebits/cloud-client-api-http",
"version": "0.3.5",
"main": "lib/index.js",
"description": "Lightweight wrapper for littleBits Cloud HTTP API",
"devDependencies": {
"browserify": "~3.44.1",
"chai": "^3.4.1",
"coffee-script": "^1.7.1",
"es5-shim": "~3.0.2",
"mocha": "^2.1.0",
"nock": "^2.17.0",
"plat": "^0.1.0",
"request": "~2.34.0",
"tap": "^2.2.0"
},
"bugs": {
"url": "https://github.com/littlebits/cloud-client-api-http/issues"
}
}