-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.06 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": "poly-tags-input",
"version": "1.0.0",
"type": "module",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"copyfiles": "^2.4.1",
"eslint": "^7.29.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/polytope/PolyTagsInput.git"
},
"scripts": {
"build:example": "tsc && cd example && npm install && cd ..",
"start:example": "cd example && npm run dev && cd ..",
"start": "npm run build:example && npm run start:example",
"build": "tsc && copyfiles -f ./src/package.json ./dist/ && copyfiles ./README.md ./LICENSE ./dist/",
"test": "jest",
"lint": "eslint src/**/*.{js,ts}",
"lint:fix": "eslint --fix src/**/*.{js,ts}"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": ""
}