-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 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
{
"name": "backbone-redux-store",
"version": "0.1.1",
"description": "Redux store API for your Backbone Models and Collections. Works with or without Redux",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"lint": "eslint .",
"test": "mocha --require babel-register test/**/*.js -R spec --ui bdd",
"build": "mkdir -p dist && babel -d dist/ lib/ && npm run docs",
"docs": "documentation readme lib/index.js -f md --section \"API\" --access \"public\"",
"prepublish": "npm run build && npm run test"
},
"author": "Adam & Vitor",
"contributors": [
"Adam Terlson <[email protected]>",
"Vitor Balocco (https://github.com/vitorbal)"
],
"repository": {
"type": "git",
"url": "https://github.com/adamterlson/backbone-redux-store"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.11.6",
"backbone": "~1.3.3",
"create-react-app": "^0.2.0",
"documentation": "^4.0.0-beta9",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"expect": "^1.20.2",
"mocha": "^3.0.1",
"redux": "~3.5.2",
"redux-logger": "^2.6.1"
},
"dependencies": {}
}