-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 1.97 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
{
"name": "tap-react-browser",
"version": "0.0.8",
"main": "index.js",
"license": "MIT",
"description": "React based tap renderer for the browser, test where you live!",
"scripts": {
"start": "(cd example-app && yarn && yarn start)",
"build": "NODE_ENV=production && yarn && webpack",
"build-test": "cd example-app && yarn && webpack && mv dist/bundle.js ./",
"test": "yarn build-test && babel-node example-app/integration-test-runner.js",
"lint": "eslint src",
"preversion": "./pre-publish.sh",
"version": "git add --a",
"postversion": "git push && git push --tags && npm publish && rm index.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "6",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.22.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.22.0",
"eslint": "^3.13.1",
"eslint-config-uber-es2015": "^3.0.1",
"eslint-config-uber-jsx": "^3.0.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"puppeteer": "^1.1.1",
"react": "^16.2.0",
"tape": "4",
"webpack": "4",
"webpack-cli": "^3.0.8"
},
"keywords": [
"react",
"es6",
"babel",
"tap",
"testing"
],
"author": {
"name": "Andrew McNutt <> (https://www.mcnutt.in/)"
},
"module": "es",
"babel": {
"env": {
"production": {
"presets": [
"es2015",
"stage-0",
"react"
]
},
"development": {
"presets": [
"es2015",
"stage-0",
"react"
]
},
"es": {
"presets": [
[
"es2015",
{
"modules": false
}
],
"stage-0",
"react"
]
}
}
},
"dependencies": {
"prop-types": "^15.6.1",
"styled-components": "^3.2.3"
}
}