forked from pryley/star-rating.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.93 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
{
"name": "star-rating.js",
"description": "This zero-dependency ES6 module transforms a SELECT into a dynamic star rating element.",
"version": "4.3.0",
"author": {
"name": "Paul Ryley",
"email": "[email protected]",
"url": "http://geminilabs.io"
},
"homepage": "https://github.com/pryley/star-rating.js",
"repository": {
"type": "git",
"url": "https://github.com/pryley/star-rating.js.git"
},
"bugs": {
"url": "https://github.com/pryley/star-rating.js/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-node-resolve": "^11.0.1",
"autoprefixer": "^10.2.3",
"gulp": "^4.0.2",
"gulp-bump": "^3.2.0",
"jshint": "^2.11.1",
"postcss-custom-properties": "^11.0.0",
"postcss-hexrgba": "^2.0.1",
"postcss-import": "^14.1.0",
"postcss-preset-env": "^7.7.2",
"postcss-selector-namespace": "github:pryley/postcss-selector-namespace#v3.0.2-beta",
"pump": "^3.0.0",
"rollup": "^2.36.1",
"rollup-plugin-filesize": "^9.1.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"yargs": "^15.4.1"
},
"scripts": {
"build": "NODE_ENV=production npx rollup -c",
"watch": "npx rollup -cw"
},
"main": "dist/star-rating.cjs.js",
"module": "dist/star-rating.esm.js",
"style": "src/index.css",
"files": [
"dist",
"img",
"src"
],
"exports": {
".": {
"require": "./dist/star-rating.cjs.js",
"import": "./dist/star-rating.esm.js",
"default": "./dist/star-rating.esm.js"
},
"./css": "./dist/star-rating.min.css",
"./dist/": "./dist/",
"./img/": "./img/",
"./src/": "./src/",
"./package.json": "./package.json"
},
"dependencies": {
"detect-it": "^4.0.0"
}
}