-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "ring-menu",
"version": "1.0.0",
"description": "Create interactive ring-shaped SVG menus with ease.",
"browser": "dist/ring-menu.js",
"module": "es6/ring-menu.js",
"files": [
"dist/",
"es6/"
],
"scripts": {
"build": "rimraf dist/ es6/ && rollup -c --environment BUILD:production && npm run website:build",
"start": "rollup -c --watch",
"website:build": "rimraf public/ && node scripts/build-website.js",
"website:watch": "node scripts/watch-website.js",
"test": "jest",
"preversion": "npm test"
},
"keywords": [
"circle",
"ring",
"menu",
"radial",
"svg"
],
"author": "Vukašin Stepanović <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Asha20/ring-menu.git"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/jest-expect-message": "^1.0.1",
"@wessberg/rollup-plugin-ts": "^1.2.12",
"chokidar": "^3.3.1",
"html-minifier": "^4.0.0",
"jest": "^24.9.0",
"jest-expect-message": "^1.0.2",
"nunjucks": "^3.2.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"rollup": "^1.29.0",
"rollup-plugin-terser": "^5.2.0",
"ts-jest": "^24.2.0",
"tslib": "^1.10.0",
"typescript": "^3.7.4"
}
}