-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
74 lines (74 loc) · 1.87 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
{
"name": "glamorous-primitives",
"description": "style primitive React interfaces with glamorous",
"version": "2.1.2",
"main": "lib/index.js",
"repository": "nitin42/glamorous-primitives",
"author": "Nitin Tulswani",
"keywords": [
"react",
"glamorous",
"react-primitives"
],
"license": "MIT",
"dependencies": {
"brcast": "^2.0.2",
"exenv": "^1.2.2",
"prop-types": "^15.5.10",
"react-primitives": "^0.5.0"
},
"peerDependencies": {
"react": "^16.2.0"
},
"scripts": {
"prebuild": "rm -rf lib",
"codemod": "./node_modules/.bin/jscodeshift -t react-codemod/transforms/class.js node_modules/react-primitives --extensions js",
"build": "yarn codemod && yarn build:lib",
"build:lib": "NODE_ENV=production ./node_modules/.bin/babel src --out-dir lib",
"test:watch": "./node_modules/.bin/jest --watch",
"test": "yarn jest",
"prepublish": "yarn build"
},
"files": [
"lib"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-app": "^3.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"flow-bin": "^0.51.1",
"flow-typed": "^2.1.5",
"jest": "^22.4.2",
"jest-glamor-react": "^3.0.0",
"jest-react-native": "^18.0.0",
"jscodeshift": "^0.3.32",
"jsdom": "^11.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0"
},
"jest": {
"setupFiles": [
"<rootDir>/setupTests.js"
],
"testEnvironment": "jsdom",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testPathIgnorePatterns": [
"/react-codemod/"
]
}
}