forked from techlab/create-jquery-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.37 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.37 KB
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
{
"name": "{{name}}",
"version": "{{version}}",
"description": "{{{description}}}",
"homepage": "",
"license": "{{license}}",
"author": "{{{author}}}",
"repository": "{{repo}}",
"dependencies": {
"jquery": ">=1.9.0"
},
"scripts": {
"start": "gulp build && gulp serve",
"watch": "gulp watch",
"test": "./node_modules/karma/bin/karma start --single-run",
"build": "gulp build",
"clean": "gulp clean",
"lint": "gulp lint"
},
"keywords": [
"util",
"create-jquery-plugin",
"cli",
"jquery",
"jquery-plugin",
"jquery-plugin-boilerplate",
"gulp",
"example"
],
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"autoprefixer": "^9.7.4",
"browser-sync": "^2.26.7",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.2.0",
"gulp-cssbeautify": "^2.0.1",
"gulp-jasmine": "^4.0.0",
"gulp-jshint": "^2.1.0",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"jasmine-core": "^3.5.0",
"jasmine-jquery": "^2.1.1",
"jshint": "^2.11.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^3.1.0",
"karma-jasmine-jquery": "^0.1.1",
"karma-spec-reporter": "0.0.32",
"uglify-save-license": "^0.4.1"
}
}