-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "elegant-slug",
"description": "Elegant & SEO-friendly slugger",
"version": "0.0.2",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"scripts": {
"test": "jest --config jestconfig.json --verbose false",
"watch": "jest --config jestconfig.json --watchAll --verbose false",
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"release": "standard-version"
},
"author": "Ping Cheng",
"license": "MIT",
"keywords": [
"slug",
"slugify",
"url",
"utf-8",
"utf8",
"seo",
"unicode"
],
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@types/jest": "^26.0.15",
"@types/lodash.deburr": "^4.1.6",
"@types/uniqid": "^5.2.0",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
},
"dependencies": {
"lodash.deburr": "^4.1.0",
"npm-run-all": "^4.1.5",
"uniqid": "^5.2.0"
}
}