forked from janmarkuslanger/attention.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "attention",
"version": "0.1.0",
"description": "A vanilla js library for creating stylish alerts, prompts and confirms.",
"main": "dist/js/attention.js",
"scripts": {
"dev": "rollup -c rollup.config.js -w",
"style": "node-sass src/sass/index.scss dist/attention.css -w --output-style=compressed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/janmarkuslanger/attention.js.git"
},
"keywords": [
"notification",
"prompt",
"confirm",
"alert"
],
"author": "Jan-Markus Langer",
"license": "MIT",
"bugs": {
"url": "https://github.com/janmarkuslanger/attention.js/issues"
},
"homepage": "https://github.com/janmarkuslanger/attention.js#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-uglify": "^6.0.4"
},
"dependencies": {
"node-sass": "^4.14.1"
}
}