-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.89 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
{
"name": "kolorpick",
"version": "0.1.0",
"description": "A basic color picker, with no dependencies!",
"keywords": [
"javascript",
"es6-module",
"color",
"color-picker"
],
"main": "src/KolorPick.js",
"scripts": {
"build": "webpack --config webpack/webpack.prod.js",
"watch": "webpack --watch --config webpack/webpack.dev.js",
"server": "http-server -p 1337 -c-1 -o demo/example.html",
"test": "karma start test/karma.config.js",
"test-dev": "karma start test/karma.config.js --dev=true",
"doc": "jsdoc -c doc/jsDoc.json",
"beforecommit": "npm run test && npm run doc && npm run build"
},
"homepage": "https://github.com/ArthurBeaulieu/KolorPick/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/ArthurBeaulieu/KolorPick.git"
},
"bugs": {
"url": "https://github.com/ArthurBeaulieu/KolorPick/issues"
},
"author": "Arthur Beaulieu",
"license": "GPL-3.0",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-loader": "^8.2.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"cssnano": "^4.1.10",
"eslint": "^7.13.0",
"eslint-webpack-plugin": "^2.2.1",
"file-loader": "^6.2.0",
"http-server": "^0.12.3",
"jasmine": "^3.7.0",
"jasmine-core": "^3.7.1",
"jsdoc": "^3.6.6",
"karma": "^6.3.3",
"karma-firefox-launcher": "^2.1.1",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-webpack": "^5.0.0",
"mini-css-extract-plugin": "^1.3.1",
"node-sass": "^6.0.1",
"postcss": "^8.2.10",
"postcss-import": "^13.0.0",
"postcss-loader": "^4.0.4",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^10.1.0",
"stylelint": "^13.8.0",
"stylelint-webpack-plugin": "^2.1.1",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.3.0"
}
}