forked from jednano/react-bem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.72 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
{
"name": "@jedmao/react-bem",
"version": "0.4.0",
"description": "BEM helper functions and HOCs for React.",
"keywords": [
"react",
"bem",
"helpers",
"css"
],
"author": "Jed Mao <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jedmao/react-bem.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"jest": {
"setupFiles": [
"raf/polyfill",
"<rootDir>/src/setupTests.ts"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(\\.|/)test\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"pretest": "npm run build",
"test": "jest --env=jsdom",
"watch": "npm run test -- --watch"
},
"dependencies": {
"@types/enzyme": "^2.8.11",
"@types/enzyme-to-json": "^1.5.0",
"@types/jest": "^21.1.2",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.9",
"@types/react-dom": "^16.0.0",
"@types/react-test-renderer": "^16.0.0",
"bem-helpers": "^0.9.0",
"bem-join": "^0.2.0"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.1.1",
"jest": "^21.2.1",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"ts-jest": "^21.0.1",
"typescript": "^2.5.3"
}
}