-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.01 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.01 KB
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
{
"name": "flukes",
"version": "0.1.4",
"description": "An implementation of React's Flux architecture.",
"maintainers": [
{
"name": "Matt Kaniaris",
"web": "https://github.com/kans"
}
],
"contributors": [
{
"name": "Matt Kaniaris",
"web": "https://github.com/kans"
},
{
"name": "Geoff Greer",
"web": "http://geoff.greer.fm/"
},
{
"name": "Bjorn Tipling",
"web": "https://github.com/btipling"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Floobits/flukes.git"
},
"dependencies": {},
"devDependencies": {
"jshint": "2.4.x",
"nodeunit": "0.9.x",
"webpack": "1.5.x"
},
"licenses": [
{
"type": "Apache License 2",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"main": "lib/flux.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"test": "node ./scripts/flux",
"build": "node node_modules/webpack/bin/webpack.js --colors --progress"
}
}