-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.67 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
{
"name": "react-beret",
"version": "0.1.15",
"description": "React components for your web page's tracking, assets, and more",
"author": "Jim Skerritt <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/payscale/react-beret"
},
"keywords": [
"react-beret",
"beret",
"assets",
"tracking",
"gtm",
"web",
"react",
"html"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"main": "lib",
"scripts": {
"build": "webpack --mode=production",
"example": "node examples/index.js",
"start": "yarn example",
"install:peers": "node ./scripts/install-peers.js",
"lint:fix": "eslint --fix --config .eslintrc --format table src",
"lint": "eslint --config .eslintrc --format table src",
"test": "jest",
"test:watch": "jest --watch"
},
"jest": {
"testURL": "http://localhost/",
"setupFiles": [
"<rootDir>/scripts/test-shims.js",
"<rootDir>/scripts/test-setup.js"
]
},
"peerDependencies": {
"prop-types": ">=15.0.0",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@babel/core": "7.1.6",
"@babel/preset-env": "7.1.6",
"@babel/preset-react": "7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"babel-loader": "8.0.4",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.7.0",
"eslint": "5.9.0",
"eslint-config-payscale": "1.0.5",
"eslint-plugin-react": "7.11.1",
"jest": "23.6.0",
"json-format": "1.0.1",
"webpack": "4.26.0",
"webpack-cli": "^3.1.2"
}
}