forked from enzymejs/enzyme-matchers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.22 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
76
77
78
79
80
81
82
{
"name": "enzyme-assertions",
"description": "Testing Helpers for Enzyme",
"author": "Blaine Kasten<blainekasten@gmail.com>",
"license": "MIT",
"scripts": {
"typecheck": "flow check",
"pretest": "node ./scripts/jest.js",
"test": "npm run test-matchers && npm run test-jasmine && npm run test-jest",
"test-matchers": "cd ./packages/enzyme-matchers && npm run jest -- --maxWorkers=4",
"test-jasmine": "cd ./packages/jasmine-enzyme && npm run jest && npm run jasmine",
"test-jest": "cd ./packages/jest-enzyme && npm run jest -- --maxWorkers=4",
"test-jestw": "cd ./packages/jest-enzyme && npm run jest --watch",
"lint": "eslint ./packages",
"precommit": "lint-staged"
},
"lint-staged": {
"packages/**/*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/blainekasten/enzyme-matchers.git"
},
"keywords": [
"javascript",
"shallow rendering",
"shallowRender",
"test",
"reactjs",
"react",
"flux",
"testing",
"test utils",
"assertion helpers",
"tdd",
"jasmine",
"jest",
"enzyme"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^6.0.0",
"babel-jest": "^10.0.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.9.1",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.3.0",
"flow-bin": "^0.49.1",
"flow-copy-source": "^1.2.0",
"husky": "^0.14.3",
"jest-cli": "^20.0.0",
"lerna": "2.0.0-beta.30",
"lint-staged": "^4.0.2",
"prettier": "^1.5.3",
"prop-types": "^15.5.6",
"react": "^15.6.1",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"readline-sync": "^1.4.1",
"rimraf": "^2.5.0"
},
"babel": {
"presets": [
"./babel.config.js"
]
},
"jest": {
"testPathDirs": [
"<rootDir>/packages/jasmine-enzyme/src",
"<rootDir>/packages/jest-enzyme/src",
"<rootDir>/packages/enzyme-matchers/src"
],
"verbose": true
}
}