-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 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
{
"name": "preloaded-img",
"version": "1.0.0",
"description": "React Component for preloading imgs.",
"main": "build/index.js",
"scripts": {
"build": "babel src -d build",
"sample": "npm run build && browserify build/sample.js -o build/bundle.js && rm build/sample.js",
"test": "echo \"Error: no test specified\" && exit 1",
"setup": "cp pre-commit .git/hooks/. && npm i && PATH=$(npm bin):$PATH npm-install-peers"
},
"repository": {
"type": "git",
"url": "https://github.com/ntslive/preloaded-img.git"
},
"author": "James Burke NTS Live (https://www.nts.live)",
"license": "ISC",
"bugs": {
"url": "https://github.com/ntslive/preloaded-img/issues"
},
"homepage": "https://github.com/ntslive/preloaded-img#readme",
"peerDependencies": {
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-dom": "^16.4.0"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"browserify": "^16.2.2",
"npm-install-peers": "^1.2.1"
}
}