-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "@adorkable/eunomia-typescript",
"version": "0.4.2",
"description": "The team's go-to utilities for Typescript, named for the Greek goddess of green pastures, law and legislation",
"scripts": {
"prepare": "npm run build & npm run test",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll --coverage",
"generate:docs": "typedoc"
},
"keywords": [
"typescript"
],
"author": "Ian G <[email protected]>",
"license": "MIT",
"dependencies": {
"chroma-js": "github:adorkable-forkable/chroma.js",
"lodash.clonedeep": "^4.5.0",
"lodash.union": "^4.6.0",
"moment": "^2.29.4",
"seedrandom": "^3.0.5"
},
"devDependencies": {
"@adorkable/eunomia-typescript-tests": "https://github.com/adorkable/eunomia-typescript-tests.git",
"@types/chroma-js": "^2.4.0",
"@types/jest": "^29.5.3",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.union": "^4.6.7",
"@types/node": "^20.4.1",
"@types/seedrandom": "^3.0.5",
"jest": "^29.6.1",
"jest-junit": "^16.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}