-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 927 Bytes
/
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
{
"name": "aimi",
"version": "1.0.0",
"description": "Beautiful Frozen Vanilla",
"main": "index.js",
"scripts": {
"test": "mocha src/test",
"lint": "eslint src/",
"generate": "npm-run-all generate:*",
"generate:alacritty": "node src/generator.js alacritty",
"generate:vim": "node src/generator.js vim",
"install:vim": "npm run generate:vim -- $HOME/.config/nvim",
"watch:vim": "watch 'npm run install:vim'"
},
"keywords": [
"colorscheme",
"theme"
],
"author": "dotellie",
"license": "MIT",
"dependencies": {
"mkdirp": "^0.5.1",
"mustache": "^3.0.1",
"readdirp": "^2.2.1",
"wcag-contrast": "^2.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"mocha": "^6.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"prettier-eslint": "^8.8.2",
"watch": "^1.0.2"
}
}