-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.51 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
{
"name": "concat-color-matrices",
"version": "1.0.0",
"description": "Functions for combining color matrices",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"preversion": "npm run lint && npm run build && npm t",
"build": "rm -rf dist && mkdir dist && tsc -p .",
"lint": "tslint -p . && tslint test/*",
"watch": "npm run build -- --watch",
"test": "jest",
"coverage": "codecov"
},
"keywords": [
"color-matrix"
],
"files": [
"dist",
"src",
"test"
],
"author": "iyegoroff <iegoroff@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iyegoroff/concat-color-matrices/issues"
},
"homepage": "https://github.com/iyegoroff/concat-color-matrices#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/iyegoroff/concat-color-matrices.git"
},
"devDependencies": {
"@types/invariant": "^2.2.29",
"@types/jest": "^23.3.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"codecov": "^3.1.0",
"jest": "^23.6.0",
"ts-jest": "^23.10.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.0.3",
"vrsource-tslint-rules": "^5.8.2"
},
"dependencies": {
"invariant": "^2.2.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageDirectory": "coverage",
"collectCoverage": true,
"testEnvironment": "node"
}
}