-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.54 KB
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
{
"name": "reactcards",
"version": "0.1.0",
"description": "devcards for react",
"license": "BSD-3-Clause",
"scripts": {
"example": "webpack-dev-server --config examples/webpack.config.js --content-base ./public/ --host 0.0.0.0 --hot --inline",
"build:example": "webpack --config examples/webpack.production.config.js && cp public/index.html examples/dist/index.html",
"test": "mocha -w test/setup.js test/*test.js",
"test:coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -w test/setup.js -- test/*.test.js"
},
"devDependencies": {
"babel-core": "^6.6.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.11.1",
"eslint-plugin-react": "^5.1.1",
"istanbul": "^1.0.0-alpha",
"jsdom": "^9.1.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mocha": "^2.4.5",
"raw-loader": "^0.5.1",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"tape": "^4.5.1",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"chai": "^3.5.0",
"deep-equal": "^1.0.1",
"enzyme": "^2.3.0",
"history": "^2.1.1",
"lodash": "^4.12.0",
"iframe-resizer": "^3.5.3",
"myro": "^0.6.2",
"react": "^15.0.2",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.2",
"react-frame-component": "^0.6.1",
"react-hot-loader": "^3.0.0-alpha.8",
"showdown": "^1.3.0"
},
"main": "src/index.js"
}