-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "@cicara/material-ripple",
"version": "0.1.0",
"description": "material ripple effect implemented using native js",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"scripts": {
"test": "jest",
"start": "npm run build:dev -- --watch",
"build": "NODE_ENV=production npm run build:dev",
"build:dev": "rollup --config rollup.config.js",
"prepublish": "npm run build"
},
"author": "鸿则 <[email protected]> (https://github.com/hungtcs)",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.0",
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"rollup": "^2.41.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cicara/material-ripple.git"
},
"keywords": [
"cicara",
"ripple",
"material-ripple"
],
"bugs": {
"url": "https://github.com/cicara/material-ripple/issues"
},
"homepage": "https://github.com/cicara/material-ripple#readme"
}