-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.69 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
51
52
53
54
55
56
57
58
59
60
{
"name": "kwulers",
"version": "0.1.0",
"description": "JS Library for converting colors to various formats",
"main": "./dist/kwulers.js",
"scripts": {
"start": "npm run dev",
"dev": "npm test -- -w",
"init": "mkdir dist",
"clean": "rm -rf dist",
"prebuild": "npm run clean && npm run init",
"build": "npm run build:development && npm run build:production",
"build:production": "NODE_ENV=production rollup -c",
"build:development": "NODE_ENV=development rollup -c",
"pretest": "npm run build",
"test": "NODE_ENV=test mocha --require babel-register ./src/test/*.test.js",
"test:single": "NODE_ENV=test mocha --require babel-register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarkRabey/kwulers.git"
},
"keywords": [
"color",
"colour",
"colors",
"rgb",
"rgba",
"hex",
"convert"
],
"author": "Mark Rabey <mark@markrabey.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MarkRabey/kwulers/issues"
},
"homepage": "https://github.com/MarkRabey/kwulers#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.19.0",
"mocha": "^5.0.4",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0"
},
"dependencies": {},
"files": [
"dist"
]
}