forked from pathofdev/react-tag-input
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.56 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
37
38
39
40
41
42
43
44
45
46
{
"name": "@pathofdev/react-tag-input",
"version": "1.0.7",
"description": "A simple tag input component for React with editable tags",
"main": "./build/umd/index.min.js",
"module": "./build/module/index.js",
"types": "./build/module/index.d.ts",
"private": false,
"sideEffects": false,
"homepage": "https://pathof.dev/projects/react-tag-input",
"repository": {
"type": "git",
"url": "https://github.com/pathofdev/react-tag-input"
},
"scripts": {
"module-build": "tsc",
"umd-build": "rollup ./build/module/index.js --format umd -m --name 'ReactTagInput' -g react:React --file ./build/umd/index.js",
"umd-minify": "uglifyjs ./build/umd/index.js -o ./build/umd/index.min.js --source-map url",
"scss-build": "sass src/styles/index.scss build/index.css --style compressed --source-map",
"build": "rm -rf build && npm run module-build && npm run umd-build && npm run umd-minify && npm run scss-build",
"push": "git push origin master --tags && npm run build && npm publish",
"example": "parcel ./example/index.html"
},
"keywords": [
"input tag",
"tag input",
"react input tag",
"react tag input component",
"react tag input"
],
"author": "pathof.dev",
"license": "MIT",
"devDependencies": {
"@types/react": "^16.8.25",
"@types/react-dom": "^16.8.5",
"parcel": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rollup": "^1.19.4",
"sass": "^1.2.3",
"tslint": "^5.18.0",
"tslint-language-service": "^0.9.9",
"typescript": "^3.5.3",
"uglify-js": "^3.6.0"
}
}