-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1008 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
39
40
41
42
43
44
{
"name": "number-to-css-color",
"version": "0.1.5",
"description": "Converts number to CSS hex color",
"main": "dist/number-to-css-color.js",
"scripts": {
"test": "babel-node test.js",
"lint": "standard",
"compile": "babel -d dist/ src/",
"prepublish": "npm run lint && npm test && npm run compile"
},
"files": [
"dist",
"LICENSE"
],
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/layflags/number-to-css-color.git"
},
"keywords": [
"number",
"css",
"hex",
"color",
"converter"
],
"author": "Lay Flags <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/layflags/number-to-css-color/issues"
},
"homepage": "https://github.com/layflags/number-to-css-color#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.9.0",
"pre-commit": "^1.1.1",
"standard": "^7.1.2",
"tape": "^4.2.0"
}
}