-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.2 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.2 KB
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
{
"name": "@skinnypete/color",
"author": "Bobby Plunkett",
"version": "1.0.3",
"description": "A modern, fully fledged color toolkit",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SkinnyPeteTheGiraffe/color.git"
},
"bugs": {
"url": "https://github.com/SkinnyPeteTheGiraffe/color/issues"
},
"homepage": "https://github.com/SkinnyPeteTheGiraffe/color#readme",
"main": "dist/n-color.js",
"module": "dist/n-color.mjs",
"typings": "dist/n-color.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/example.ts",
"build": "tsc -p tsconfig.prod.json",
"build:rollup": "rollup -c",
"lint": "eslint \"src/**/*.ts\" \"src/**/*.test.ts\"",
"lint:fix": "eslint --fix \"src/**/*.ts\" \"src/**/*.test.ts\"",
"test": "ts-mocha -p tsconfig.test.json src/**/*.test.ts",
"test:coverage": "nyc --reporter=text-summary --reporter=text --reporter=lcovonly npm run test",
"docs:api": "typedoc src/index.ts",
"docs:copy": "mkdir -p build && rsync -a docs/ build/api && rsync -a site/ build",
"docs:serve": "docsify serve site",
"docs:watch": "typedoc --watch"
},
"keywords": [
"color",
"colour",
"css",
"typescript",
"rgba",
"hsl",
"hsv",
"hwb",
"cmyk"
],
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@rollup/plugin-typescript": "^8.3.1",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"chai": "^4.3.6",
"docsify-cli": "^4.4.4",
"esbuild": "^0.14.29",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-prettier": "^4.0.0",
"markdownlint": "^0.25.1",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"rollup": "^2.70.1",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-esbuild": "^4.8.2",
"rollup-plugin-terser": "^7.0.2",
"ts-mocha": "^9.0.2",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typedoc": "^0.22.13",
"typescript": "^4.5.4"
}
}