-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
{
"name": "jest-jsxstyle",
"version": "3.0.0",
"description": "Jest utilities for JSXstyle React",
"main": "./index.js",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && babel --copy-files --out-dir dist --ignore *.test.js src",
"test": "jest --env=jsdom",
"format": "prettier --trailing-comma es5 --single-quote --write src/**/*.js",
"prepublish": "npm run build"
},
"files": [
"dist",
"index.js"
],
"keywords": [
"jest",
"jsxstyle",
"react",
"snapshots"
],
"author": "Jared Palmer <jared@palmer.net> (http://jaredpalmer.com/)",
"license": "MIT",
"dependencies": {
"jest-diff": "22.0.0",
"jest-snapshot": "22.0.0",
"jsxstyle": "2.0.7"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-jest": "^19.0.0",
"babel-preset-env": "^1.2.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.23.0",
"enzyme": "^2.7.1",
"enzyme-to-json": "^1.5.0",
"husky": "^0.13.2",
"jest-cli": "22.0.0",
"lint-staged": "^3.3.1",
"prettier": "^1.5.3",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.4.2"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/jest-jsxstyle.git"
},
"bugs": {
"url": "https://github.com/jaredpalmer/jest-jsxstyle/issues"
},
"homepage": "https://github.com/jaredpalmer/jest-jsxstyle#readme"
}