-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
89 lines (89 loc) · 2.43 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
83
84
85
86
87
88
89
{
"name": "codemirror-colorpicker",
"version": "1.9.80",
"description": "simple colorpicker used anywhere",
"main": "./dist/codemirror-colorpicker.js",
"scripts": {
"pub": "npm run build && npm publish",
"build": "NODE_ENV=production rollup --config config/rollup.config.prod.js",
"dev": "NODE_ENV=development rollup -w --config config/rollup.config.dev.js",
"docs": "http-server ./docs",
"test": "NODE_ENV=test jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/easylogic/codemirror-colorpicker.git"
},
"keywords": [
"codemirror",
"colorview",
"colorpicker",
"imagefilter",
"color",
"rgb",
"webgl",
"chromdevtool",
"macos",
"sketch",
"palette"
],
"author": "easylogic",
"license": "MIT",
"bugs": {
"url": "https://github.com/easylogic/codemirror-colorpicker/issues"
},
"homepage": "https://colorpicker.easylogic.studio/",
"devDependencies": {
"autoprefixer": "^7.2.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-minify": "^0.2.0",
"codemirror": "^5.48.0",
"cross-env": "^5.1.1",
"http-server": "^0.11.1",
"jest": "^22.4.2",
"jest-cli": "^22.4.2",
"jest-report": "^0.1.11",
"rollup": "^0.52.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-css-only": "^0.2.0",
"rollup-plugin-glslify": "^1.0.5",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-minify": "^1.0.3",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^1.2.7",
"rollup-plugin-scss": "^0.4.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"uglify-es": "^3.2.2"
},
"peerDependencies": {
"codemirror": "^5.48.0"
},
"dependencies": {},
"jest": {
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"globals": {
"NODE_ENV": "test"
},
"verbose": false,
"moduleFileExtensions": [
"js",
"json"
],
"testRegex": "test/.*\\.spec\\.js$",
"testEnvironment": "node"
}
}