-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "react-bem-components",
"version": "1.0.3",
"description": "Simple React components with built in BEM css class naming conventions, now in Typescript",
"main": "dist/react-bem-components.js",
"types": "dist/react-bem-components.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "jest"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"testMatch": [
"<rootDir>/components/**/*.spec.js?(x)"
],
"testURL": "http://localhost"
},
"author": "Will Busby <[email protected]>",
"repository": {
"type": "github",
"url": "https://github.com/buzzin0609/React-BEM-Components.git"
},
"license": "ISC",
"dependencies": {
"@types/jest": "^23.3.1",
"@types/node": "^10.5.7",
"@types/react": "^16.4.8",
"@types/react-test-renderer": "^16.0.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"typescript": "^3.0.1"
},
"devDependencies": {
"babel-jest": "^23.4.2",
"jest": "^23.4.2",
"react-test-renderer": "^16.4.1",
"react-testing-library": "^4.1.5"
}
}