-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
{
"name": "jest-aphrodite-react",
"version": "2.2.0",
"license": "MIT",
"main": "./lib/index.js",
"types": "./typings/index.d.ts",
"scripts": {
"build": "yarn clean && tsc",
"clean": "rimraf lib/ typings/",
"precommit": "lint-staged",
"prepublish": "npm run build",
"test": "jest -c jest.config.json"
},
"files": ["lib", "typings", "no-important.js", "no-important.d.ts"],
"repository": {
"type": "git",
"url": "/~https://github.com/dmiller9911/jest-aphrodite-react"
},
"dependencies": {
"css": "^2.2.1",
"css-in-js-utils": "^2.0.0"
},
"peerDependencies": {
"aphrodite": "^2"
},
"devDependencies": {
"@types/css": "^0.0.31",
"@types/enzyme": "^3.1.6",
"@types/jest": "^22.0.1",
"@types/node": "^9.3.0",
"@types/react-test-renderer": "^16.0.1",
"aphrodite": "^2",
"babel-jest": "^22.0.6",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.0",
"glamor": "^2.20.40",
"glamorous": "^4.11.2",
"husky": "^0.14.3",
"jest": "^22.0.6",
"jest-glamor-react": "^3.2.2",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"react-testing-library": "^4.1.5",
"rimraf": "^2.6.2",
"ts-jest": "^22.0.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"typescript": "2.9.2"
},
"lint-staged": {
"*.{js,json,ts}": ["prettier --write", "git add"]
}
}