-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "blood-moon",
"version": "0.1.0",
"description": "Generate the Blood Moon color scheme",
"main": "generate.ts",
"scripts": {
"generate": "ts-node generate.ts",
"generate:watch": "nodemon -e ts -x ts-node generate.ts",
"format": "prettier --write \"./**/*.{json,ts}\"",
"format:check": "prettier --list-different \"./**/*.{json,ts}\"",
"lint": "tslint '*.ts' 'applications/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dguo/blood-moon.git"
},
"keywords": [
"colorscheme"
],
"author": "Danny Guo",
"license": "MIT",
"bugs": {
"url": "https://github.com/dguo/blood-moon/issues"
},
"homepage": "https://github.com/dguo/blood-moon#readme",
"dependencies": {
"@types/color": "3.0.0",
"@types/node": "10.5.7",
"change-case": "3.0.2",
"color": "3.0.0",
"nodemon": "1.18.3",
"ts-node": "7.0.0",
"typescript": "3.0.1"
},
"devDependencies": {
"prettier": "1.14.0",
"tslint": "5.11.0",
"tslint-config-prettier": "1.14.0"
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"tabWidth": 4
},
"packageManager": "yarn@4.0.2"
}