-
Notifications
You must be signed in to change notification settings - Fork 468
/
package.json
36 lines (36 loc) · 1.63 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": "django-autocomplete-light",
"version": "3.5.1",
"description": "A fresh approach to autocomplete implementations, specially for Django. Status: v3 stable, 2.x.x stable, 1.x.x deprecated. Please DO regularely ping us with your link at #yourlabs IRC channel https://django-autocomplete-light.readthedocs.io/",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "npm-run-all copy-deps compile-js minify-js",
"compile-js": "node select2.build.js",
"minify-js": "npm-run-all minify-autocomplete minify-select2",
"minify-autocomplete": "uglifyjs src/dal/static/autocomplete_light/autocomplete_light.js -c -o src/dal/static/autocomplete_light/autocomplete_light.min.js -m reserved=['$','yl','django','jQuery','jquery','select2'] --source-map",
"minify-select2": "uglifyjs src/dal_select2/static/autocomplete_light/select2.js -c -o src/dal_select2/static/autocomplete_light/select2.min.js -m reserved=['$','yl','django','jQuery','jquery','select2'] --source-map",
"copy-deps": "copyfiles \"node_modules/select2/dist/css/*.css\" \"src/dal_select2/static/vendor/select2/dist\" -E -u 3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yourlabs/django-autocomplete-light.git"
},
"author": "James Pic",
"license": "MIT",
"bugs": {
"url": "https://github.com/yourlabs/django-autocomplete-light/issues"
},
"homepage": "https://django-autocomplete-light.readthedocs.io/",
"devDependencies": {
"concat": "^1.0.3",
"copyfiles": "^2.4.1",
"npm-run-all": "^4.1.5",
"select2": "^4.1.0-rc.0",
"uglify-js": "^3.14.3"
},
"dependencies": {
"semver": "latest"
}
}