-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 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
{
"name": "stardux",
"version": "0.0.3",
"description": "Functional DOM containers based on Starplate and Redux",
"main": "lib/index.js",
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"doc": "esdoc -c esdoc.json"
},
"keywords": [
"functional",
"incremental",
"dom",
"starplate",
"redux",
"container",
"state"
],
"author": "Joseph Werle <werle@littlstar.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-core": "^6.2.1",
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"esdoc": "^0.4.3",
"esdoc-es7-plugin": "0.0.3",
"mocha": "^2.3.4",
"uglifyjs": "^2.4.10"
},
"dependencies": {
"domify": "^1.4.0",
"esprima": "^2.7.0",
"extend": "^3.0.0",
"mutation-observer": "^1.0.2",
"redux": "^3.0.4",
"starplate": "0.0.24"
},
"directories": {
"doc": "doc",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/littlstar/stardux.git"
},
"bugs": {
"url": "https://github.com/littlstar/stardux/issues"
},
"homepage": "https://github.com/littlstar/stardux#readme"
}