-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.4 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "react-appdrawer",
"version": "0.0.7",
"description": "A simple react component which acts as application container with sidebar",
"main": "distribution/AppDrawer.js",
"scripts": {
"test": "jest",
"demo": "babel-node demo/demo.jsx",
"coverage": "jest --coverage",
"build": "babel source --out-dir distribution",
"prepublish": "npm run build",
"browserify": "npm run build && browserify distribution/AppDrawer.js -o distribution/browser/appdrawer.js",
"uglify": "npm run browserify && uglifyjs distribution/browser/appdrawer.js --compress -o distribution/browser/appdrawer.min.js",
"codecov": "jest && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fbfeix/react-appdrawer.git"
},
"keywords": [
"react",
"component",
"application",
"drawer",
"responsive"
],
"author": "Felix Astner <[email protected]> (http://felixastner.de)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fbfeix/react-appdrawer/issues"
},
"homepage": "https://github.com/fbfeix/react-appdrawer#readme",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-cli": "^6.11.4",
"babel-jest": "^14.1.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.23.1",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"img-loader": "^1.3.1",
"jest-cli": "^14.1.0",
"node-sass": "^3.8.0",
"postcss-loader": "^0.9.1",
"react-addons-test-utils": "^15.3.0",
"react-hot-loader": "^1.3.0",
"react-test-renderer": "^15.3.0",
"sass-loader": "^4.0.0",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-router": "^2.6.1"
},
"dependencies": {
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/react-test-renderer",
"<rootDir>/node_modules/fbjs"
],
"testFileExtensions": [
"js",
"jsx"
],
"moduleFileExtensions": [
"js",
"jsx",
"json"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}