-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
38 lines (38 loc) · 940 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
38
{
"name": "ayu",
"version": "8.0.1",
"description": "The ayu sublime theme as a color palette",
"main": "dist/colors.js",
"types": "dist/colors.d.ts",
"scripts": {
"build": "run-s clear-build compile",
"compile": "tsc --pretty",
"svg": "node scripts/build-svg.js",
"prepublish": "run-s build svg",
"clear-build": "rimraf dist",
"start": "run-s build svg test",
"test": "node dist/__test__"
},
"files": [
"dist"
],
"repository": {
"url": "https://github.com/ayu-theme/ayu-colors",
"type": "git"
},
"author": "Konstantin Pschera <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^9.4.6",
"font-color-contrast": "1.0.3",
"is-object": "1.0.1",
"npm-run-all": "3.1.1",
"rimraf": "2.5.4",
"typescript": "^3.0.1"
},
"dependencies": {
"@types/chroma-js": "^2.0.0",
"chroma-js": "^2.1.0",
"nonenumerable": "^1.1.1"
}
}