This repository has been archived by the owner on Feb 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathpackage.json
140 lines (140 loc) · 5.31 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "component-playground",
"version": "3.2.1",
"description": "A component for rendering React components with editable source and live preview",
"keywords": [
"React",
"playground",
"live",
"component"
],
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/FormidableLabs/component-playground.git"
},
"author": "Ken Wheeler",
"license": "MIT",
"homepage": "https://github.com/FormidableLabs/component-playground#readme",
"bugs": {
"url": "https://github.com/FormidableLabs/component-playground/issues"
},
"scripts": {
"postinstall": "cd lib || npm run build-lib",
"preversion": "npm run test",
"postversion": "publishr postversion -V",
"postpublish": "publishr postpublish -V",
"version": "npm run clean && npm run build",
"version-dry-run": "publishr dry-run -V",
"clean-dist": "rimraf dist",
"build-dist-min": "BABEL_ENV=commonjs webpack --config webpack.config.js",
"build-dist-dev": "BABEL_ENV=commonjs 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",
"clean-es": "rimraf es",
"build-lib": "npm run clean-lib && BABEL_ENV=commonjs babel src --out-dir lib",
"build-es": "npm run clean-es && babel src --out-dir es",
"clean": "npm run clean-lib && npm run clean-dist && npm run clean-es",
"build": "npm run build-lib && npm run build-dist && npm run build-es",
"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": "BABEL_ENV=commonjs node node_modules/karma/bin/karma start karma.conf.js",
"test-frontend-ci": "BABEL_ENV=commonjs node node_modules/karma/bin/karma start --browsers PhantomJS,Firefox karma.conf.coverage.js",
"test-frontend-cov": "BABEL_ENV=commonjs node node_modules/karma/bin/karma start karma.conf.coverage.js",
"test-frontend-dev": "BABEL_ENV=commonjs node node_modules/karma/bin/karma start karma.conf.dev.js",
"test": "npm run test-frontend && echo 'TODO Server 13, Integration 12 tests.'",
"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-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^6.4.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-standalone": "^6.26.0",
"codemirror": "^5.30.0",
"prop-types": "^15.6.0",
"react-codemirror2": "^5.0.0",
"rimraf": "^2.6.2",
"webpack": "^1.15.0"
},
"peerDependencies": {
"react": "^15.6.0 || ^16.0.0",
"react-dom": "^15.6.0 || ^16.0.0"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"chai": "^3.2.0",
"core-js": "^2.5.1",
"css-loader": "~0.9.0",
"eslint": "^4.8.0",
"eslint-config-formidable": "^3.0.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^0.11.2",
"isparta-loader": "^2.0.0",
"karma": "^0.13.9",
"karma-chrome-launcher": "^0.2.0",
"karma-coverage": "^0.4.2",
"karma-firefox-launcher": "^1.0.1",
"karma-ie-launcher": "^0.2.0",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.1.1",
"karma-safari-launcher": "^0.1.1",
"karma-sauce-launcher": "^0.2.14",
"karma-spec-reporter": "0.0.20",
"karma-webpack": "^1.7.0",
"lodash": "^4.13.1",
"mocha": "^2.2.5",
"opener": "^1.4.1",
"phantomjs-prebuilt": "^2.1.15",
"publishr": "^1.0.0",
"raw-loader": "^0.5.1",
"react": "^15.6.0 || ^16.0.0",
"react-dom": "^15.6.0 || ^16.0.0",
"react-hot-loader": "^1.2.8",
"react-test-renderer": "^16.0.0",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0",
"style-loader": "~0.8.0",
"url-loader": "~0.5.5",
"webpack-dev-server": "^1.14.0"
},
"publishr": {
"dependencies": [
"^babel-(?!(standalone|polyfill))",
"^rimraf$",
"^webpack$"
],
"scripts": {
"postinstall": ""
},
"files": {
".npmignore": ".npmignore.publishr"
}
},
"sideEffects": false
}