This repository has been archived by the owner on Jun 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.11 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
{
"name": "colors.css",
"version": "2.2.637",
"description": "GitHub colour codes for web development",
"main": "./dist/colors.js",
"types": "./dist/colors.d.ts",
"scripts": {
"clean": "rimraf dist out",
"start": "npm-run-all clean build",
"build": "npm-run-all build:script build:script:start build:js build:ts:types",
"build:script": "tsc",
"build:script:start": "node ./out/build.js",
"build:js": "tsc --outDir ./dist/ --module commonjs ./dist/colors.ts",
"build:ts:types": "tsc --outDir ./dist/ -d --declarationMap --emitDeclarationOnly ./dist/colors.ts",
"lint": "npx eslint . --ext .js,.ts",
"test": "mocha -r ts-node/register test/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roryclaasen/colors.css.git"
},
"author": {
"name": "Rory Claasen",
"email": "contact@roryclaasen.dev"
},
"maintainers": [
{
"name": "Rory Claasen",
"email": "contact@roryclaasen.dev"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/roryclaasen/colors.css/issues"
},
"homepage": "https://github.com/roryclaasen/colors.css",
"publishConfig": {
"registry": "https://npm.pkg.github.com/@roryclaasen"
},
"dependencies": {},
"devDependencies": {
"@types/bent": "^7.3.2",
"@types/chai": "^4.3.1",
"@types/js-yaml": "^4.0.5",
"@types/less": "^3.0.3",
"@types/mocha": "^9.1.1",
"@types/node-sass": "^4.11.2",
"@types/number-to-words": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"bent": "^7.3.12",
"chai": "^4.3.6",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.1.0",
"js-yaml": "^4.1.0",
"less": "^4.1.3",
"mocha": "^10.0.0",
"node-sass": "^7.0.1",
"npm-run-all": "^4.1.5",
"number-to-words": "^1.2.4",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}