-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.83 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
50
51
52
53
54
55
{
"name": "ddcarousel",
"version": "1.3.1",
"description": "Simple and fast carousel slider written in vannila JS",
"main": "index.js",
"scripts": {
"dist": "npm-run-all babeljs minifyjs buildcss minifycss license",
"babeljs": "babel src/ddcarousel.js --out-file dist/ddcarousel.js --source-maps --presets=@babel/preset-env",
"minifyjs": "uglifyjs --compress --comments /^!/ --output dist/ddcarousel.min.js -- dist/ddcarousel.js",
"watchsass": "node-sass -w --output-style compact --include-path scss src/ddcarousel.scss src/testing/ddcarousel.css",
"buildcss": "node-sass --output-style compact --include-path scss src/ddcarousel.scss src/ddcarousel.css",
"minifycss": "uglifycss src/ddcarousel.css > dist/ddcarousel.min.css",
"license": "node utils/post-dist.js",
"test": "npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danaildinev/ddcarousel.git"
},
"keywords": [
"js",
"carousel",
"slider",
"vanilla",
"free"
],
"author": "Danail Dinev",
"license": {
"type": "MIT",
"url": "https://github.com/danaildinev/ddcarousel/blob/master/LICENSE"
},
"bugs": {
"url": "https://github.com/danaildinev/ddcarousel/issues"
},
"homepage": "https://github.com/danaildinev/ddcarousel#readme",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.12",
"babel-plugin-minify-mangle-names": "^0.5.0",
"babel-plugin-minify-simplify": "^0.5.1",
"babel-plugin-remove-import-export": "^1.1.1",
"babel-plugin-transform-minify-booleans": "^6.9.4",
"babel-plugin-transform-remove-console": "^6.9.4",
"copyfiles": "^2.4.1",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"uglify-js": "^3.13.3",
"uglifycss": "0.0.29"
},
"dependencies": {
"read-package-json": "^2.1.2"
}
}