forked from developit/tags-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.01 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
{
"name": "tags-input",
"version": "1.1.1",
"main": "tags-input.js",
"description": "<input type=\"tags\"> like magic.",
"scripts": {
"build": "npm run transpile && npm run less && npm run size",
"transpile": "babel src --source-root src -s -d .",
"less": "lessc --clean-css --source-map --source-map-less-inline --autoprefix=\"last 2 versions\" src/tags-input.less tags-input.css",
"size": "echo \"gzip size: $(pretty-bytes $(gzip-size $npm_package_main))\"",
"test": "jshint src/**.js",
"prepublish": "npm run build",
"release": "npm run build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git://github.com/developit/tags-input.git"
},
"devDependencies": {
"babel": "^5.8.21",
"gzip-size": "^3.0.0",
"jshint": "^2.8.0",
"less": "^2.5.1",
"less-plugin-autoprefix": "^1.4.2",
"less-plugin-clean-css": "^1.5.1",
"pretty-bytes": "^2.0.1"
}
}