forked from rokka-io/rokka.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "rokka",
"version": "0.8.0",
"description": "JavaScript client library for Rokka.io",
"main": "index.js",
"scripts": {
"test": "npm run lint",
"lint": "./node_modules/.bin/eslint .",
"docs": "cd ./docs; node generate.js",
"compile": "./node_modules/.bin/babel -d lib/ src/",
"prepublish": "npm run compile"
},
"precommit": ["docs", "test"],
"repository": {
"type": "git",
"url": "git+https://github.com/rokka-io/rokka.js.git"
},
"keywords": [
"rokka",
"client",
"browser",
"node.js"
],
"author": "Patrick Stadler <patrick.stadler@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rokka-io/rokka.js/issues"
},
"homepage": "https://github.com/rokka-io/rokka.js#readme",
"dependencies": {
"promise-retry": "^1.1.1",
"request-promise": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"eslint": "^2.11.1",
"markdox": "^0.1.10",
"pre-commit": "^1.1.3"
},
"peerDependencies": {
"babel-polyfill": "^6.3.14"
}
}