-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.85 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "alpinejs-steps",
"version": "1.0.0",
"description": "A controller for stepwise UI components.",
"type": "commonjs",
"browser": "dist/steps.bundle.js",
"main": "dist/steps.js",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist demo docs coverage tutorials",
"lint": "eslint --fix",
"pretty": "npx prettier --write --ignore-unknown .",
"test": "jest",
"docs": "npx jsdoc src -c build/jsdoc.conf.json",
"prestart": "npm run build:tutorials && npm run docs",
"start": "node docs-server.js",
"prebuild": "npm run clean",
"build": "npm-run-all --aggregate-output --parallel build:*",
"postbuild": "npm run docs",
"build:standalone": "rollup --environment BUNDLE:false --config rollup.config.js",
"build:esm": "rollup --environment ESM:true,BUNDLE:false --config rollup.config.js",
"build:bundle": "rollup --environment BUNDLE:true --config rollup.config.js",
"build:tutorials": "npx gulp",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"prerelease": "npm run test",
"release": "standard-version -p ember -i CHANGELOG.md -s -r 0",
"postrelease": "npm run version",
"version": "git add CHANGELOG.md package.json",
"postversion": "git push && git push --tags",
"commitmsg": "commitlint -E GIT_PARAMS",
"precommit": "lint-staged",
"postcommit": "git reset"
},
"lint-staged": {
"linters": {
"*.{js}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
},
"keywords": [
"stepper",
"stepwise",
"tabs",
"carousel",
"wizard",
"alpinejs",
"stimulus"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ivanmucyongabo/alpinejs-steps.git"
},
"author": "Ivan Mucyo Ngabo",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivanmucyongabo/alpinejs-steps/issues"
},
"homepage": "https://github.com/ivanmucyongabo/alpinejs-steps#readme",
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-html": "^0.2.4",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"babel-jest": "^29.0.2",
"del": "^6.0.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-ejs": "^5.1.0",
"gulp-file": "^0.4.0",
"gulp-rename": "^2.0.0",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"jsdoc": "^3.6.11",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.77.0",
"rollup-plugin-emit-ejs": "^3.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^2.0.0",
"rollup-plugin-terser": "^7.0.2"
}
}