-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.44 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
{
"name": "pantone-picker",
"version": "1.0.0",
"description": "Just a color picker with similar PANTONE® code matcher",
"main": "src/js/PANTONE-picker.min.js",
"repository": {
"type": "git",
"url": "https://github.com/gubi/PANTONE-picker/"
},
"keywords": [
"PANTONE",
"color",
"picker",
"colopicker"
],
"author": "Alessandro Gubitosi <gubi.ale@iod.io>",
"license": "GPL-3.0",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"factor-bundle": "^2.5.0",
"grunt": "^1.0.1",
"grunt-babel": "^7.0.0",
"grunt-browserify": "^5.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.2",
"grunt-contrib-htmlmin": "^2.2.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-legacy-log": "^1.0.0",
"grunt-legacy-log-utils": "^1.0.0",
"grunt-legacy-util": "^1.0.0",
"grunt-sass": "^2.0.0",
"jshint": "^2.9.4",
"load-grunt-tasks": "^3.5.2",
"time-grunt": "^1.4.0"
},
"dependencies": {
"grunt": "^1.0.1",
"load-grunt-tasks": "^3.5.2",
"node-sass": "^4.3.0"
},
"scripts": {
"build": "babel src -d lib && browserify lib/app.js -o lib/app.bundle.js"
}
}