-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 937 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 937 Bytes
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": "react-singleton",
"version": "1.3.2",
"description": "Rending a singleton react component in DOM",
"main": "dist/react-singleton.js",
"scripts": {
"build": "babel src --out-dir dist",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Caesor/react-singleton.git"
},
"keywords": [
"react",
"singleton"
],
"author": "liaozksysu@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/Caesor/react-singleton/issues"
},
"homepage": "https://github.com/Caesor/react-singleton#readme",
"dependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0"
}
}