This repository has been archived by the owner on Mar 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
96 lines (96 loc) · 3.83 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
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "container-query",
"version": "0.0.1",
"description": "React Component",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jherr/container-query.git"
},
"author": "Jack Herrington",
"license": "MIT",
"bugs": {
"url": "https://github.com/jherr/container-query/issues"
},
"homepage": "https://github.com/jherr/container-query",
"scripts": {
"postinstall": "npm run build-lib",
"preversion": "npm run check",
"version": "npm run clean && npm run build && git add -A dist",
"clean-dist": "rimraf dist",
"build-dist-min": "webpack --config webpack.config.js",
"build-dist-dev": "webpack --config webpack.config.dev.js",
"build-dist": "npm run clean-dist && npm run build-dist-min && npm run build-dist-dev",
"clean-lib": "rimraf lib",
"build-lib": "npm run clean-lib && babel --stage 0 src -d lib",
"clean": "npm run clean-lib && npm run clean-dist",
"build": "npm run build-lib && npm run build-dist",
"server-dev": "webpack-dev-server --port 3000 --config demo/webpack.config.dev.js --content-base demo",
"server-hot": "webpack-dev-server --port 3000 --config demo/webpack.config.hot.js --hot --content-base demo",
"server-test": "webpack-dev-server --port 3001 --config webpack.config.test.js",
"dev": "npm run server-dev & npm run server-test",
"hot": "npm run server-hot & npm run server-test",
"open-demo": "opener http://127.0.0.1:3000",
"open-dev": "npm run dev & npm run open-demo",
"open-hot": "npm run hot & npm run open-demo",
"lint-node": "eslint -c .eslintrc-node *.js demo/webpack.*.js",
"lint-react": "eslint --ext .js,.jsx -c .eslintrc-react src demo/*.jsx",
"lint-react-test": "eslint --ext .js,.jsx -c .eslintrc-react-test src test/client",
"lint": "npm run lint-node && npm run lint-react && npm run lint-react-test",
"test-frontend": "node node_modules/karma/bin/karma start karma.conf.js",
"test-frontend-ci": "node node_modules/karma/bin/karma start --browsers PhantomJS,Firefox karma.conf.coverage.js",
"test-frontend-cov": "node node_modules/karma/bin/karma start karma.conf.coverage.js",
"test-frontend-dev": "node node_modules/karma/bin/karma start karma.conf.dev.js",
"test": "npm run test-frontend",
"test-ci": "npm run test-frontend-ci",
"test-cov": "npm run test-frontend-cov",
"test-dev": "npm run test-frontend-dev",
"check": "npm run lint && npm run test",
"check-ci": "npm run lint && npm run test-ci",
"check-cov": "npm run lint && npm run test-cov",
"check-dev": "npm run lint && npm run test-dev"
},
"dependencies": {
"babel": "^5.5.8",
"babel-core": "^5.5.8",
"babel-loader": "^5.3.2",
"classnames": "^2.1.3",
"css-loader": "~0.9.0",
"object.assign": "^4.0.1",
"react-component-resizable": "^0.2.3",
"rimraf": "^2.4.0",
"style-loader": "~0.8.0",
"url-loader": "~0.5.5",
"webpack": "^1.10.0"
},
"devDependencies": {
"babel-eslint": "^3.1.25",
"chai": "^3.2.0",
"eslint": "^0.24.1",
"eslint-config-defaults": "^3.0.3",
"eslint-plugin-filenames": "^0.1.1",
"eslint-plugin-react": "^2.6.4",
"isparta-loader": "^0.2.0",
"karma": "^0.13.7",
"karma-chrome-launcher": "^0.2.0",
"karma-coverage": "^0.4.2",
"karma-firefox-launcher": "^0.1.6",
"karma-ie-launcher": "^0.2.0",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.0",
"karma-phantomjs-shim": "^1.0.0",
"karma-safari-launcher": "^0.1.1",
"karma-sauce-launcher": "^0.2.14",
"karma-spec-reporter": "0.0.20",
"karma-webpack": "^1.6.0",
"lodash": "^3.9.3",
"mocha": "^2.2.5",
"opener": "^1.4.1",
"phantomjs": "^1.9.17",
"react": "0.13.x",
"react-hot-loader": "^1.2.8",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"webpack-dev-server": "^1.10.0"
}
}