forked from itsjavi/bootstrap-colorpicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.35 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "bootstrap-colorpicker",
"version": "3.0.3",
"description": "Bootstrap Colorpicker is a modular color picker plugin for Bootstrap 4.",
"main": "./dist/js/bootstrap-colorpicker.js",
"homepage": "https://farbelous.github.io/bootstrap-colorpicker/",
"repository": {
"type": "git",
"url": "https://github.com/farbelous/bootstrap-colorpicker.git"
},
"bugs": {
"url": "https://github.com/farbelous/bootstrap-colorpicker/issues"
},
"keywords": [
"bootstrap",
"colorpicker"
],
"author": "Javi Aguilar",
"license": "MIT",
"dependencies": {
"bootstrap": "^4.0",
"jquery": ">=2.1.0"
},
"scripts": {
"test": "npm run lint && ava --color --verbose",
"start": "node_modules/.bin/http-server ./build/docs",
"lint": "node_modules/.bin/eslint ./src/js ./*.js ./test",
"lint-fix": "node_modules/.bin/eslint --fix ./src/js ./*.js ./test",
"build": "gulp clean && gulp dist && gulp docs && gulp docs:add-v2-docs",
"build-dist": "gulp dist",
"build-docs": "gulp dist && gulp docs && gulp docs:add-v2-docs",
"build-npm": "npm run build && gulp npm-prepublish",
"publish-docs": "npm run build && npm run test && gulp publish-gh-pages"
},
"devDependencies": {
"ava": "^0.23.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"color": "^3.0.0",
"del": "^3.0.0",
"eslint": "^4.11.0",
"eslint-loader": "^1.9.0",
"gh-pages": "^1.0.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-clean-css": "^3.9.0",
"gulp-compile-handlebars": "^0.6.1",
"gulp-header": "^1.8.9",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.2",
"gulp-shell": "^0.6.3",
"gulp-sourcemaps": "^2.6.1",
"gulp-string-replace": "^1.1.1",
"handlebars-layouts": "^3.1.4",
"http-server": "^0.10.0",
"jsdoc": "^3.5.5",
"jsdom": "^11.3.0",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.8.1",
"webpack-stream": "^4.0.0"
},
"ava": {
"files": [
"tests/**/*test.js"
],
"source": [
"src/js/**/*.{js,jsx}"
],
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"tap": false,
"powerAssert": false,
"require": [
"babel-register"
],
"babel": "inherit"
}
}