This repository has been archived by the owner on Jul 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
{
"name": "@bigtest/react",
"description": "React DOM helpers for testing big",
"version": "0.1.2",
"license": "MIT",
"repository": "https://github.com/bigtestjs/react",
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
"files": [
"dist",
"docs",
"src"
],
"scripts": {
"build": "rollup --config",
"docs": "bigtest-docs",
"lint": "eslint --ignore-path .gitignore ./",
"postpublish": "bigtest-tag-version",
"start": "karma start",
"test": "karma start --single-run"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.0",
"@babel/polyfill": "^7.0.0-beta.0",
"@babel/preset-env": "^7.0.0-beta.0",
"@babel/preset-react": "^7.0.0-beta.0",
"@babel/preset-stage-3": "^7.0.0-beta.0",
"@babel/register": "^7.0.0-beta.0",
"@bigtest/meta": "bigtestjs/meta#v0.0.1",
"babel-eslint": "^8.2.3",
"babel-loader": "^8.0.0-beta.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-standard": "^3.1.0",
"karma": "^2.0.2",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^3.0.0",
"mocha": "^5.2.0",
"prop-types": "^15.6.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rollup": "^0.59.3",
"rollup-plugin-babel": "^4.0.0-beta.0",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"webpack": "^3.10.0"
},
"dependencies": {
"history": "^4.7.2"
}
}