-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "svelte-toast",
"version": "1.0.0",
"description": "simple toast, write by svelte",
"main": "dist/svelte-toast.mjs",
"repository": "[email protected]:lili21/svelte-toast.git",
"author": "li.li",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@rollup/plugin-node-resolve": "^7.1.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"rollup": "^2.1.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-svelte": "^5.1.1",
"standard-version": "^7.1.0",
"svelte": "^3.20.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"scripts": {
"build": "rollup --config rollup.config.js",
"prepublishOnly": "npm run build",
"release": "standard-version"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}