This repository has been archived by the owner on Mar 24, 2022. It is now read-only.
forked from snowak-cb/react-console
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.26 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
{
"name": "react-console-component",
"version": "0.6.1",
"description": "Simple react console emulator",
"homepage": "https://autochthe.github.io/react-console/",
"repository": "git+https://github.com/autochthe/react-console.git",
"keywords": [
"react-component",
"console"
],
"author": "Mara Kim <[email protected]> (https://github.com/autochthe)",
"license": "GPL-3.0",
"bugs": "https://github.com/autochthe/react-console/issues",
"main": "main.js",
"style": "main.css",
"typings": "main.d.ts",
"scripts": {
"prepublish": "typings install && webpack",
"build": "webpack",
"clean": "rm -rf dist lib dev/dist test/dist coverage",
"clean:deep": "rm -rf dist lib dev/dist test/dist coverage node_modules typings",
"test": "karma start",
"preversion": "npm test",
"postversion": "git push && git push --tags && ./release.js"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"chai": "^3.5.0",
"changelog-parser": "^2.0.2",
"css-loader": "^0.23.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"exports-loader": "^0.6.3",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"github": "^2.4.0",
"istanbul-instrumenter-loader": "^0.2.0",
"karma": "^1.1.2",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-detect-browsers": "^2.1.0",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-opera-launcher": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^3.0.1",
"node-sass": "^4.7.2",
"phantomjs-polyfill-object-assign": "0.0.2",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"sass-loader": "^4.0.0",
"semver": "^5.3.0",
"source-map-loader": "^0.1.5",
"ts-loader": "^0.8.2",
"typescript": "^1.8.10",
"typings": "^1.3.2",
"webpack": "^1.13.1",
"webpack-archive-plugin": "^2.0.0",
"webpack-fail-plugin": "^1.0.4",
"webpack-node-externals": "^1.3.3"
},
"peerDependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0"
}
}