-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.69 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
{
"name": "color-fns",
"version": "0.1.0",
"description": "Functional color utility library",
"repository": "https://github.com/ajlende/color-fns",
"license": "MIT",
"author": "Alex Lende <[email protected]>",
"sideEffects": false,
"main": "cjs/index.js",
"module": "esm/index.js",
"typings": "types/index.d.ts",
"engines": {
"node": ">=10.13.0"
},
"scripts": {
"build": "npm run clean && concurrently \"npm:build:*\"",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc -p tsconfig.types.json",
"build:docs": "typedoc src/index.ts",
"clean": "rimraf esm cjs types tsconfig.tsbuildinfo tsconfig.esm.tsbuildinfo tsconfig.cjs.tsbuildinfo tsconfig.types.tsbuildinfo",
"coverage": "codecov",
"husky:pre-commit": "lint-staged",
"lint": "(eslint '**/*.{js,ts,tsx}' || true) && tsc --noEmit",
"lint:fix": "(eslint --cache --fix '**/*.{js,ts,tsx}' || true) && prettier --write .",
"prepare": "husky install",
"prepublish": "npm run build",
"test": "nyc ava",
"test:watch": "ava --watch"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"ava": "^4.3.1",
"codecov": "^3.8.1",
"concurrently": "^7.3.0",
"date-fns": "^2.16.1",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-ava": "^13.2.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-node": "^10.9.1",
"typedoc": "^0.23.8",
"typedoc-plugin-markdown": "^3.4.5",
"typescript": "^4.1.3"
}
}