-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1011 Bytes
/
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
{
"name": "flux-crud-store",
"description": "A Flux Store implementation that uses Backbone for CRUD actions. Can return Immutable.js objects to allow for pure rendering.",
"license": "MIT",
"author": "Holman Gao <[email protected]>",
"version": "0.0.12",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/golmansax/flux-crud-store.git"
},
"keywords": [
"react",
"crud",
"rest",
"store",
"flux",
"immutable",
"backbone"
],
"devDependencies": {
"browserify": "latest",
"chai": "latest",
"dirty-chai": "latest",
"codeclimate-test-reporter": "latest",
"istanbul": "latest",
"jscs": "latest",
"jshint": "latest",
"mocha": "latest",
"mockery": "latest",
"sinon": "latest",
"sinon-chai": "latest",
"travis-lint": "latest"
},
"dependencies": {
"backbone": "latest",
"underscore": "latest"
},
"scripts": {
"test": "make test",
"build": "make build"
}
}