-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 937 Bytes
/
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
{
"name": "pagiuery",
"version": "1.0.4",
"description": "jQuery content pagination library.",
"devDependencies": {
"@types/jquery": "^3.3.38",
"microbundle": "^0.12.0",
"prettier": "^2.0.5"
},
"scripts": {
"build": "microbundle --compress --no-sourcemap -i src/pagiuery.ts -o dist/pagiuery.js",
"dev": "microbundle watch",
"format": "prettier --write src/pagiuery.ts",
"publish": "npm run format && npm run build && git commit --allow-empty -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"repository": "skippednote/pagiuery",
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"useTabs": false
},
"keywords": [
"jquery",
"showmore",
"pagiuery"
],
"files": [
"dist",
"src"
],
"author": "Bassam Ismail <skippednote@gmail.com>",
"license": "MIT",
"main": "dist/pagiuery.js"
}