-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "jest-color",
"version": "0.1.0",
"main": "dist/jest-color.cjs.js",
"description": "A bundle of Jest matchers for testing and asserting colors",
"files": [
"/dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test:ci": "jest --ci",
"test:watch": "jest --watch \"src/.*(/__tests__/.*|(\\.|/)(test|spec))\\.[jt]sx?$\"",
"test:integ": "rollup -c && jest \"test/.*.[jt]sx?$\"",
"test:coverage": "jest --coverage",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write '**/*.js'",
"format:check": "prettier --ignore-path .gitignore --check '**/*.{js,jsx,mjs}'",
"prepublishOnly": "npm run build"
},
"keywords": [
"jest",
"matchers",
"color",
"testing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Mathspy/jest-color.git"
},
"author": "Mathspy <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.1",
"husky": "^3.0.4",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"rollup": "^1.19.4",
"rollup-plugin-babel": "^4.3.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"color": "^3.1.2",
"color-diff": "^1.1.0",
"jest-matcher-utils": "^24.8.0"
}
}