forked from altjs/container
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.57 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
54
55
56
57
58
{
"name": "alt-container",
"version": "1.1.1",
"description": "A flux container for alt",
"main": "lib/AltContainer.js",
"jsnext:main": "src/AltContainer.js",
"scripts": {
"clean": "rimraf lib && rimraf utils",
"build": "babel src --out-dir lib",
"pretest": "yarn run clean && yarn run build",
"test": "babel-node node_modules/.bin/_mocha -u exports -R nyan test"
},
"repository": {
"type": "git",
"url": "[email protected]:altjs/container.git"
},
"keywords": [
"altcontainer",
"fluxcomponent",
"component",
"container",
"connect",
"stores",
"flux",
"react"
],
"author": "Josh Perez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/altjs/container/issues"
},
"homepage": "https://github.com/altjs/container",
"dependencies": {
"object.assign": "^4.1.2",
"prop-types": "^15.8.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/node": "^7.16.5",
"@babel/plugin-proposal-decorators": "^7.16.5",
"@babel/plugin-proposal-function-bind": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"alt": "git+https://github.com/bitshares/alt.git",
"alt-utils": "https://github.com/bitshares/alt-utils.git",
"chai": "^4.3.4",
"create-react-class": "^15.7.0",
"ghooks": "^2.0.4",
"jsdom": "^19.0.0",
"mocha": "^9.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"sinon": "^12.0.1"
}
}