This repository was archived by the owner on Oct 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.08 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.08 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
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-testing-starter-kit",
"version": "0.1.0",
"description": "React starter kit with nice testing environment set up.",
"main": "src/main.js",
"directories": {
"test": "test",
"src": "src",
"dist": "dist"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"babel-core": "^6.4.0",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"chai": "^4.2.0",
"enzyme": "^3.11.0",
"expect": "^26.0.0",
"jsdom": "^16.2.2",
"json-loader": "^0.5.4",
"karma": "^5.0.1",
"karma-babel-preprocessor": "^7.0.0",
"karma-chai": "^0.1.0",
"karma-mocha": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^3.0.5",
"mocha": "^5.0.0",
"mocha-webpack": "^1.1.0",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"react-addons-test-utils": "^15.1.0",
"sinon": "^9.0.2",
"source-map-support": "^0.5.16",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.11.5",
"webpack-node-externals": "^2.5.0",
"yargs": "^15.3.1"
},
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server --port 3000 --devtool eval --progress --colors --hot --content-base dist",
"test": "npm run test-mocha-webpack",
"test-watch": "npm run test-mocha-webpack-watch",
"test-karma": "node_modules/.bin/karma start karma.config.js",
"test-karma-watch": "npm run test-karma -- --watch",
"test-mocha-webpack": "mocha-webpack ",
"test-mocha-webpack-watch": "mocha-webpack --watch",
"test-mocha": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive",
"test-mocha-watch": "npm run test-mocha -- --watch"
},
"repository": {
"type": "git",
"url": "tbd"
},
"keywords": [
"react",
"mocha",
"chai",
"enzyme",
"testing"
],
"author": "Spencer Dixon",
"license": "ISC"
}