-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.58 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": "jquery.steps",
"version": "1.1.4",
"description": "A simple, lightweight jQuery step wizard plugin.",
"main": "./dist/jquery-steps.js",
"repository": {
"type": "git",
"url": "https://github.com/oguzhanoya/jquery-steps.git"
},
"bugs": {
"url": "https://github.com/oguzhanoya/jquery-steps/issues"
},
"homepage": "https://oguzhanoya.github.io/jquery-steps",
"scripts": {
"build:css": "stylus src/styl/jquery-steps.styl -m -o dist/",
"build:css-dev": "stylus -w src/styl/jquery-steps.styl -m -o dist/",
"build:js": "rollup -c --bundleConfigAsCjs",
"build:js-dev": "rollup -c -w --bundleConfigAsCjs",
"build": "run-p build:js build:css",
"dev": "run-p build:css-dev build:js-dev",
"lint": "eslint --fix src",
"format": "prettier . --write --list-different",
"compress": "uglifyjs dist/jquery-steps.js -o dist/jquery-steps.min.js -c -m --comments /^!/",
"prebuild": "npm run lint",
"postbuild": "npm run compress",
"clean": "rm -rf dist/*"
},
"author": "oguzhanoya",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-json": "^6.0.0",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"rollup": "^3.9.0",
"stylus": "^0.59.0",
"uglify-js": "^3.17.4"
},
"dependencies": {
"jquery": "^3.6.3"
}
}