-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.61 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.61 KB
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
{
"name": "@imc/hyphen",
"author": "Martin Wind",
"version": "0.9.0",
"description": "This is a text hyphenation library, based on Franklin M. Liang's hyphenation algorithm",
"scripts": {
"lint": "eslint src",
"test": "jest",
"build-patterns": "ts-node scripts/buildPatterns.ts",
"clean": "rimraf lib",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/im-c/hyphen"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/node": "^7.12.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime-corejs3": "^7.12.5",
"@types/jest": "^26.0.18",
"@types/node": "^14.14.11",
"@typescript-eslint/eslint-plugin": "4.9.1",
"@typescript-eslint/parser": "4.9.1",
"babel-loader": "8.2.2",
"babel-plugin-transform-typescript-metadata": "^0.3.1",
"chalk": "^4.1.0",
"core-js": "^3.8.1",
"eslint": "7.15.0",
"eslint-config-prettier": "7.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.2.0",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-extended": "^0.11.5",
"jest-watch-typeahead": "0.6.1",
"prettier": "2.2.1",
"source-map-loader": "^1.1.3",
"stylelint": "13.8.0",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-standard": "^20.0.0",
"ts-node": "9.1.1",
"typescript": "4.1.2"
}
}