-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "rater-js",
"description": "Star rating widget for the browser.",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "git://github.com/fredolss/rater-js.git"
},
"homepage": "https://fredolss.github.io/rater-js",
"types": "index.d.ts",
"main": "index.js",
"scripts": {
"build": "browserify -t [ browserify-css --inlineImages] -t [babelify --presets [ @babel/preset-env] ] ./lib/rater-js -o index.js --standalone rater-js",
"test": "mocha --require ignore-styles"
},
"keywords": [
"star",
"rating",
"rater",
"vote",
"rate",
"widget",
"browser",
"browserify",
"typescript"
],
"author": {
"name": "Fredrik Olsson",
"email": "fredrik.olsson2@outlook.com",
"url": "https://github.com/fredolss"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"browserify-css": "^0.15.0",
"ignore-styles": "^5.0.1",
"jsdom": "^24.0.0",
"mocha": "^10.3.0",
"sinon": "^17.0.1"
}
}