-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.47 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": "qubit-react",
"version": "1.5.2",
"description": "A library for enabling Qubit Experiences on React sites",
"main": "experience/index.js",
"scripts": {
"test": "make test",
"prepublish": "./scripts/injectVersion.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QubitProducts/qubit-react.git"
},
"author": "Qubit",
"license": "MIT",
"peerDependencies": {
"react": ">=0.14.x <=16.x",
"react-dom": ">=0.14.x <=16.x"
},
"dependencies": {
"create-react-class": "^15.5.3",
"driftwood": "^1.1.6",
"prop-types": "^15.5.10",
"slapdash": "^1.3.0",
"sync-p": "^1.1.5"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-jest": "^16.0.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"jest": "^23.6.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"standard": "^8.5.0",
"standard5": "^1.1.1",
"webpack": "^4.0.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.0.0"
},
"standard": {
"globals": [
"describe",
"it",
"expect",
"beforeEach",
"afterEach",
"jest"
]
},
"standard5": {
"ignore": [
"**/__tests__",
"sandbox/",
"scripts/"
]
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>setupTests.js"
}
}