-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 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
{
"name": "jscolor",
"version": "0.3.0",
"description": "Super simple color manipulation using getters and setters",
"main": "./dist/index.js",
"keywords": [
"es6",
"color",
"rgba",
"hsl",
"hue",
"luminance",
"saturation",
"grayscale",
"getter",
"setter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/robertgonzales/jscolor.git"
},
"author": "Robert Gonzales",
"license": "MIT",
"bugs": {
"url": "https://github.com/robertgonzales/jscolor/issues"
},
"homepage": "https://github.com/robertgonzales/jscolor#readme",
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-core": "^6.7.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-runtime": "^6.23.0",
"eslint": "^2.7.0",
"eslint-plugin-babel": "^3.1.0",
"webpack": "^1.13.1"
},
"scripts": {
"start": "webpack -w",
"prepublish": "babel src --out-dir ./dist"
}
}