-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "colour-chisel",
"version": "0.1.0",
"bin": {
"colour-chisel": "./dist/cc.js"
},
"description": "A library for navigating the colour wheel and creating colour schemes.",
"main": "dist/index.js",
"scripts": {
"test": "ts-mocha ./test/**/* --timeout 10000",
"build": "rm -rf dist && tsc",
"deploy-demo": "npm run build --prefix ./demo && gh-pages -d ./demo/build",
"deploy-npm": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Metroxe/colour-chisel.git"
},
"keywords": [
"colour",
"chisel"
],
"author": "Christopher Powroznik <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Metroxe/colour-chisel/issues"
},
"homepage": "https://github.com/Metroxe/colour-chisel#readme",
"file": [
"dist"
],
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/expect": "^1.20.4",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.11",
"chai": "^4.2.0",
"mocha": "^6.2.1",
"ts-mocha": "^6.0.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3",
"gh-pages": "^2.0.1"
},
"files": [
"/dist"
]
}