forked from moltar/texthighlighter-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.81 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@moltar/texthighlighter-ts",
"version": "0.0.0",
"description": "TypeScript Project Template",
"license": "MIT",
"author": {
"name": "Roman Filippov",
"email": "[email protected]",
"url": "https://www.scaleleap.com/"
},
"homepage": "https://github.com/moltar/texthighlighter-ts",
"repository": {
"type": "git",
"url": "[email protected]:moltar/texthighlighter-ts.git"
},
"bugs": {
"url": "https://github.com/moltar/texthighlighter-ts/issues"
},
"main": "lib/index.js",
"files": [
"/lib"
],
"scripts": {
"prebuild": "npm run clean",
"build": "tsc --build tsconfig.build.json",
"build:client": "browserify client/index.ts -p [ tsify --noImplicitAny ] > dist/TextHighlighter.js",
"clean": "rimraf lib/*",
"dev": "ts-node-dev --respawn --transpileOnly src",
"lint": "eslint --ext ts,js src/ test/",
"lint:fix": "npm run lint -- --fix",
"semantic-release": "npx @scaleleap/semantic-release-config",
"start": "ts-node --transpile-only --pretty src",
"test": "jest",
"test:watch": "jest --watchAll"
},
"types": "lib/index.d.ts",
"devDependencies": {
"@types/jest": "26.0.23",
"@types/node": "14.17.4",
"danger": "10.6.6",
"jest": "27.0.6",
"rimraf": "3.0.2",
"ts-jest": "27.0.3",
"ts-node": "10.1.0",
"ts-node-dev": "1.1.8",
"tsconfigs": "4.0.2",
"typescript": "4.3.5",
"@types/eslint": "^7.2.4",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"browserify": "^17.0.0",
"eslint": "^6.8.0",
"jest-junit": "^12.0.0",
"jest-serial-runner": "^1.1.0",
"live-server": "^1.2.1",
"ts-loader": "^8.0.9",
"tsify": "^5.0.2"
},
"keywords": [
"template",
"typescript"
],
"publishConfig": {
"access": "restricted"
}
}