-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.2 KB
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": "hex-opacity",
"version": "1.0.16",
"description": "Simple module for adding opacity to hexidecimal colour codes",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/redahas/hex-opacity.git"
},
"author": "redahas <seanredahan@gmail.com>",
"license": "MIT",
"files": [
"lib/**/*"
],
"keywords": [
"css",
"js",
"node",
"color",
"style",
"nodejs",
"opacity",
"javascript",
"hexidecimal color",
"hex opacity"
],
"scripts": {
"build": "tsc",
"test": "ts-node ./src/__tests__/test.js",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"patch": "npm version patch -m 'Bump to version %s'",
"minor": "npm version minor -m 'Bump to version %s'",
"major": "npm version major -m 'Bump to version %s'"
},
"dependencies": {
"@types/node": "^11.10.5",
"pad": "^2.2.2"
},
"devDependencies": {
"@types/tape": "^4.2.33",
"prettier": "^1.16.4",
"tape": "^4.10.1",
"ts-node": "^8.0.3",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3333"
}
}