-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "legit-image",
"version": "0.1.4",
"description": "an img tag, with built in lazy loading",
"main": "lib/image.js",
"scripts": {
"test": "mocha tests --recursive --require babel-register",
"test-watch": "mocha tests --recursive --require babel-register --watch",
"compile": "babel src --out-dir lib;",
"dev-server": "webpack-dev-server --config ./example/server.config.js --hot --port 8881",
"example": "webpack --config ./example/example.config.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/legitcode/image.git"
},
"keywords": [
"react-component",
"react",
"table",
"react-table",
"bootstrap"
],
"author": "Zach Silveira",
"license": "ISC",
"bugs": {
"url": "https://github.com/legitcode/image/issues"
},
"homepage": "https://github.com/legitcode/image#readme",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"enzyme": "^2.2.0",
"mocha": "^2.4.5",
"react-addons-test-utils": "^15.0.1",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.10.1"
},
"peerDependencies": {
"react": ">=0.14.0 || >15.0.0",
"react-dom": ">15.0.0"
}
}