-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.14 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
{
"private": false,
"name": "compare-similarity",
"version": "1.1.0",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "father-build",
"format": "prettier --write src/*.ts",
"format-check": "prettier --check src/*.ts",
"lint": "eslint src/*.ts",
"prepublishOnly": "npm run build && np --yolo --no-publish",
"all": "yarn format-check && yarn lint && yarn build"
},
"author": "xrkffgg",
"homepage": "https://github.com/ant-js/compare-similarity",
"keywords": [
"action",
"ts",
"js",
"tool",
"util",
"compare",
"similarity"
],
"files": [
"dist",
"CHANGELOG.md",
"README.md"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ant-js/compare-similarity/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ant-js/compare-similarity",
"branch": "main"
},
"devDependencies": {
"@umijs/fabric": "^2.5.6",
"eslint": "^7.18.0",
"father-build": "^1.19.1",
"np": "^7.2.0",
"prettier": "^2.2.1"
},
"dependencies": {
"@babel/runtime": "^7.12.5"
}
}