-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·44 lines (44 loc) · 1.03 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
{
"name": "ui-marker",
"version": "0.0.1",
"description": "Help manage your UI positions easily.",
"keywords": [
"position",
"ui"
],
"main": "dist/index",
"typings": "dist/index.d.ts",
"dependencies": {
"chalk": "^4.1.0",
"commander": "^7.2.0",
"power-assert": "^1.6.1",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"eslint-config-egg": "^7.0.0",
"mocha": "^8.0.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.0",
"eslint": "5",
"eslint-plugin-babel": "^5.2.0",
"nyc": "^15.1.0"
},
"repository": {
"type": "git",
"url": "git@github.com:yihuineng/ui-marker.git"
},
"author": "yihuineng",
"bin": {
"ui-marker": "./dist/bin/demo-bin.js"
},
"scripts": {
"lint": "eslint . --ext .ts,js",
"test": "mocha 'test/**/*.test.ts' --require ts-node/register --require ./test/cfg/hooks.ts --recursive",
"test:cov": "nyc --reporter=lcov --reporter=text npm run test"
},
"files": [
"dist"
]
}