-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "@kumux/colorscheme-engine",
"version": "0.5.3",
"description": "Use the Kumux color scheme in your application",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc",
"lint:ci": "eslint src --max-warnings=0",
"lint:fix": "eslint --fix src",
"typecheck": "tsc --noEmit",
"prepublish": "npm run lint:ci && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kumux/kumux-colorscheme-engine.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kumux/kumux-colorscheme-engine/issues"
},
"homepage": "https://github.com/Kumux/kumux-colorscheme-engine#readme",
"dependencies": {
"@sentry/node": "^6.16.1",
"@sentry/tracing": "^6.16.1",
"application-config": "^2.0.0",
"cross-fetch": "^3.1.4",
"faker": "^5.5.3",
"jest": "^27.4.3",
"moment": "^2.29.1",
"mustache": "^4.2.0",
"persistent-cache": "^1.1.2"
},
"bin": {
"kumux-colorscheme": "dist/cli.js"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"@types/mustache": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}