-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 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
{
"name": "johny",
"version": "0.0.1",
"description": "Johny is simple utility helping you to work with colors",
"main": "src/index.ts",
"scripts": {
"test": "jest --watch --config jest.config.js",
"test-coverage": "jest --coverage",
"lint": "tslint --force --project tsconfig.json",
"lint-fix": "prettier --write 'src/**/*' && tslint --fix --force --project tsconfig.json",
"watch-compile": "tsc --watch",
"watch-js": "nodemon ./build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olo2552/johny.git"
},
"keywords": [
"colors",
"NodeJS",
"Electron",
"utility",
"ES6",
"functional"
],
"author": "Aleksander Wielgorski",
"license": "MIT",
"bugs": {
"url": "https://github.com/olo2552/johny/issues"
},
"homepage": "https://github.com/olo2552/johny#readme",
"dependencies": {
"color": "^3.0.0",
"hex-rgb": "^3.0.0",
"rgb-to-hex": "0.0.0"
},
"devDependencies": {
"@types/color": "^3.0.0",
"@types/jest": "^23.3.2",
"@types/node": "^10.9.4",
"jest": "^23.6.0",
"nodemon": "^1.18.4",
"prettier": "^1.14.2",
"ts-jest": "^23.10.0-beta.6",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^3.0.3"
}
}