-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
34 lines (34 loc) · 849 Bytes
/
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
{
"name": "jest-plugin-its",
"version": "2.9.0",
"description": "'subject' and 'its' implementations from RSpec in Jest.",
"license": "MIT",
"author": "Mark Miyashita <[email protected]>",
"homepage": "https://github.com/negativetwelve/jest-plugins",
"repository": "https://github.com/negativetwelve/jest-plugins/tree/master/packages/jest-plugin-its",
"keywords": [
"its",
"jest",
"jest-plugin",
"plugin",
"subject",
"test"
],
"main": "build/index",
"files": [
"build",
"setup.js"
],
"dependencies": {
"invariant": "^2.2.2",
"jest-plugin-set": "^2.9.0"
},
"peerDependencies": {
"jest": "*"
},
"scripts": {
"build": "babel src --out-dir build --ignore '**/*.spec.js'",
"clean": "rimraf build",
"prepublishOnly": "yarn run clean && yarn run build"
}
}