-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
58 lines (58 loc) · 1.5 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
{
"name": "refline.js",
"version": "0.11.1",
"description": "refline.js是完全不依赖设计器环境的参考线组件,方便各种设计器快速接入,支持参考线匹配及吸附功能。",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/lib/index.d.ts",
"dependencies": {},
"devDependencies": {
"@babel/runtime": "^7.12.5",
"@types/jest": "^25.1.4",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-search-and-replace": "^1.0.1",
"babel-plugin-transform-define": "^2.0.0",
"babel-preset-packez": "^1.3.0",
"jest": "^25.1.0",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"rimraf": "^3.0.2",
"transform-es": "^5.6.1",
"typescript": "^4.1.3"
},
"files": [
"dist",
"*.md"
],
"scripts": {
"dev": "tsc -w",
"test": "jest",
"build": "run-s clean tsc cjs esm",
"cjs": "transform-es src -d dist/cjs -c -t cjs",
"esm": "transform-es src -d dist/esm -c -t esm",
"tsc": "tsc",
"clean": "rimraf dist",
"prepublishOnly": "run-s test build"
},
"repository": {
"type": "git",
"url": "https://github.com/refline/refline.js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"refline",
"refline.js"
],
"author": "[email protected]",
"license": "MIT",
"browserslist": [
">0.25%",
"not dead",
"not ie <= 10",
"not op_mini all"
]
}