-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 859 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
{
"name": "in-suggest",
"version": "1.0.1",
"description": "Simple input autocomplete or typeahead",
"main": "index.js",
"scripts": {
"build:css": "cat ./src/styles/base.css ./src/styles/simple.css | cleancss -o ./dist/in-suggest.min.css",
"build:iife": "rollup -f iife -n InSuggest -i ./src/index.js -o ./dist/in-suggest.js",
"build:module": "rollup -f cjs -n InSuggest -i ./src/index.js -o ./index.js",
"build": "run-p build:*",
"prepublish": "npm run build:module"
},
"keywords": [
"in-suggest",
"suggest",
"suggestions",
"input",
"autocomplete",
"typeahead"
],
"author": "Yopadd",
"license": {
"type": "WTFPL",
"url": "http://spdx.org/licenses/WTFPL.html#licenseText"
},
"devDependencies": {
"clean-css": "^3.4.21",
"npm-run-all": "^3.1.1",
"rollup": "^0.36.3"
}
}