-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.09 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
{
"name": "color-wheel-renderer",
"version": "0.1.19",
"description": "Color Wheel Renderer is a tool for generating custom color wheels.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"preferGlobal": true,
"bin": {
"color-wheel-renderer": "dist/index.js"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/jamesthurley/color-wheel-renderer.git"
},
"scripts": {
"prepublishOnly": "npm run clean && npm run build",
"preversion": "npm run ci",
"postversion": "git push && git push --tags",
"start": "ts-node src/index.ts",
"test": "ava --verbose",
"test-verbose": "ava --verbose -- --verbose",
"test-unit": "npm run test -- --match=\"!*integration test*\"",
"test-unit-watch": "npm run test-unit -- --watch",
"clean": "rimraf dist dist-tests",
"lint": "tslint --project tsconfig.json && tslint --project tsconfig.tests.json",
"build": "tsc",
"build-tests": "tsc --project tsconfig.tests.json",
"build-all": "npm run clean && npm run build && npm run build-tests",
"ci": "npm run lint && npm run build-all && npm run test"
},
"author": "James Thurley",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamesthurley/color-wheel-renderer/issues"
},
"homepage": "https://opendarkroom.com/",
"dependencies": {
"colors": "1.2.1",
"commander": "2.15.1",
"fs-extra": "5.0.0",
"jimp": "0.2.28"
},
"devDependencies": {
"@types/commander": "2.12.2",
"@types/fs-extra": "5.0.1",
"@types/node": "9.4.7",
"ava": "1.0.0-beta.5.1",
"rimraf": "2.6.2",
"ts-node": "5.0.1",
"tslint": "5.9.1",
"typescript": "2.7.2"
},
"ava": {
"files": [
"integration-tests/**/*.spec.{js,ts}",
"src/**/*.spec.{js,ts}"
],
"sources": [
"src/**/*.{js,ts}",
"!dist/**/*"
],
"babel": false,
"extensions": [
"ts"
],
"concurrency": 2,
"failFast": false,
"failWithoutAssertions": false,
"tap": false,
"compileEnhancements": false,
"require": [
"ts-node/register"
]
}
}