-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "simple-color-picker",
"version": "1.0.5",
"description": "Simple Color picker for the web",
"author": "Guillaume Gouessan <guillaume.gouessan@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/superguigui/simple-color-picker.git"
},
"homepage": "http://superguigui.github.io/simple-color-picker",
"bugs": {
"url": "https://github.com/superguigui/simple-color-picker/issues"
},
"types": "./dist/index.d.ts",
"keywords": [
"color",
"picker",
"colorpicker",
"color-picker",
"simple",
"ui"
],
"source": "src/index.ts",
"main": "dist/simple-color-picker.js",
"module": "dist/simple-color-picker.module.js",
"unpkg": "dist/simple-color-picker.umd.js",
"amdName": "SimpleColorPicker",
"scripts": {
"build": "microbundle --css inline",
"test": "uvu -r ts-node/register tests",
"cover": "nyc npm test",
"gh-pages": "gh-pages -d example/dist -b gh-pages"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"browser-env": "^3.3.0",
"gh-pages": "^3.2.0",
"microbundle": "^0.13.0",
"nyc": "^15.1.0",
"stylus": "^0.54.8",
"ts-node": "^10.0.0",
"typescript": "^4.2.4",
"uvu": "^0.5.1"
},
"dependencies": {
"@types/insert-css": "^2.0.0",
"insert-css": "^2.0.0"
}
}