-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.24 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "openframe-jsclient",
"version": "0.1.3",
"description": "A JavaScript API client for Openframe.",
"main": "dist/of.js",
"scripts": {
"build": "webpack",
"lint": "./node_modules/.bin/eslint test/*.js src/*.js",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "npm run lint && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require babel-register",
"test-coveralls": "npm run lint && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --require babel-register && npm run coveralls",
"docs:setup": "cd docs && bundle install",
"docs:build": "cd docs && bundle exec middleman build --clean",
"docs:run": "cd docs && bundle exec middleman server",
"docs:deploy": "git subtree push --prefix docs/build origin gh-pages"
},
"keywords": [
"openframe",
"api",
"client",
"javascript",
"js"
],
"author": {
"name": "Jonathan Wohl",
"url": "http://jonathanwohl.com"
},
"contributors": [
{
"name": "Jonathan Wohl",
"url": "http://jonathanwohl.com"
}
],
"license": "MIT",
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-register": "^6.18.0",
"bower-webpack-plugin": "^0.1.9",
"coveralls": "^2.11.15",
"eslint": "^4.19.1",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^4.0.0",
"fetch-mock": "^5.5.0",
"glob": "^7.1.6",
"istanbul": "^1.1.0-alpha.1",
"json-loader": "^0.5.4",
"minimist": "^1.2.5",
"mocha": "^2.4.5",
"mock-local-storage": "^1.1.17",
"nock": "^9.0.2",
"null-loader": "^0.1.1",
"open": "6.0.0",
"rimraf": "^2.7.1",
"webpack": "^1.12.0"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/OpenframeProject/Openframe-JSClient"
}
}