-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.27 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
50
51
52
{
"name": "immstruct",
"version": "2.0.0",
"description": "Immutable data structure for top-to-bottom properties in component based libraries like React",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha -R spec tests/*_test.js",
"build-docs": "cat index.js src/structure.js | dox -r | doxme > api.md",
"build-dist": "node ./makeBundle.js"
},
"repository": {
"type": "git",
"url": "https://github.com/omniscientjs/immstruct.git"
},
"keywords": [
"immutable",
"react",
"structure",
"properties"
],
"author": "Mikael Brevik, @torgeir",
"contributors": [
"Mikael Brevik",
"@torgeir"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/omniscientjs/immstruct/issues"
},
"homepage": "https://github.com/omniscientjs/immstruct",
"dependencies": {
"eventemitter3": "^2.0.2",
"immutable": "^3.1.0",
"immutable-cursor": "^2.0.1"
},
"devDependencies": {
"browserify": "^14.1.0",
"browserify-shim": "^3.8.9",
"chai": "^3.5.0",
"derequire": "^2.0.6",
"dox": "^0.9.0",
"doxme": "git://github.com/mikaelbr/doxme#dev",
"mocha": "^3.2.0",
"uglify-js": "^2.4.16"
},
"browserify-shim": {
"immutable": "global:Immutable"
}
}