-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "radium-flex",
"version": "2.1.0",
"main": "lib/index.js",
"typings": "lib/index",
"repository": "https://github.com/blueberryapps/radium-flex",
"author": "ondrejbartas",
"license": "MIT",
"scripts": {
"test": "yarn tslint && yarn jest",
"jest": "jest",
"tslint": "tslint 'src/**/*.ts?(x)'",
"compile": "tsc",
"cleanupBuild": "rm -rf ./lib",
"prepublish": "yarn test && yarn cleanupBuild && yarn compile"
},
"jest": {
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.spec\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"peerDependencies": {
"radium": ">=0.16",
"react": ">=16"
},
"devDependencies": {
"@types/enzyme": "^3.1.10",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/jest": "^23.1.0",
"@types/radium": "^0.24.0",
"@types/react": "^16.3.18",
"@types/react-dom": "^16.0.6",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"jest": "^23.1.0",
"radium": "^0.24.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"typescript": "^2.9.2"
}
}