-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
48
49
50
{
"name": "@eknowles/color-this",
"version": "0.0.0-development",
"description": "Generate a random color from a given string",
"keywords": [
"color"
],
"bugs": {
"url": "https://github.com/eknowles/color-this/issues"
},
"homepage": "https://github.com/eknowles/color-this#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/eknowles/color-this.git"
},
"author": "Edward Knowles <[email protected]> (http://efk.me)",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release",
"prepublish": "npm run build"
},
"release": {
"publish": [
"@semantic-release/npm",
{
"path": "@semantic-release/github",
"assets": [
{
"path": "dist/index.js",
"label": "JS Distribution"
}
]
}
]
},
"devDependencies": {
"@types/jest": "^23.0.0",
"coveralls": "^3.0.1",
"jest": "^23.1.0",
"semantic-release": "^15.5.0",
"travis-deploy-once": "^5.0.0",
"ts-jest": "^22.4.6",
"typescript": "^2.9.1"
}
}