-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "jquery-plugin-generator",
"description": "jQuery plugin generator from classes / functions",
"version": "1.4.1",
"homepage": "https://github.com/kasparsz/jquery-plugin-generator",
"repository": "kasparsz/jquery-plugin-generator",
"bugs": {
"url": "https://github.com/kasparsz/jquery-plugin-generator/issues"
},
"engines": {
"node": ">=0.10.0"
},
"author": "Kaspars Zuks (https://github.com/kasparsz)",
"license": "MIT",
"files": [
"dist/jquery-plugin-generator.js"
],
"main": "dist/jquery-plugin-generator.js",
"scripts": {
"build": "buble src/index.js -o dist/jquery-plugin-generator.js",
"compress": "uglifyjs dist/jquery-plugin-generator.js --output dist/jquery-plugin-generator.min.js --compress --mangle",
"prepublish": "npm run build && npm run compress",
"test": "mocha"
},
"keywords": [
"jquery",
"plugin"
],
"devDependencies": {
"buble": "^0.20.0",
"jquery": "^3.5.1",
"jsdom": "^16.2.0",
"mocha": "^7.2.0",
"uglify-js": "^3.9.4"
}
}