-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) 路 1.87 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) 路 1.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pld-cli",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "https://github.com/super-bunny/pld-cli.git"
},
"author": {
"name": "Clovis de Villars",
"email": "clovis.devillars@gmail.com",
"url": "https://github.com/super-bunny"
},
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"pld": "dist/src/bin/index.js"
},
"files": [
"dist/"
],
"scripts": {
"start": "node .",
"build": "cross-env NODE_ENV=production rimraf dist && ttsc",
"dev": "cross-env NODE_ENV=development ts-node-dev -C ttypescript --respawn --transpile-only -- src/index.ts",
"lint": "eslint --fix .",
"test": "ava -v",
"prepare": "husky install",
"prepublishOnly": "npm run lint && npm run build"
},
"engines": {
"node": ">=15"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"dependencies": {
"boxen": "^5.0.0",
"chalk": "^4.1.0",
"commander": "^7.1.0",
"compare-versions": "^3.6.0",
"console-table-printer": "^2.8.2",
"figures": "^3.2.0",
"fuse.js": "^6.4.6",
"ora": "^5.3.0",
"typescript-is": "^0.18.1",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@types/node": "^14.14.26",
"@types/update-notifier": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"ava": "^3.14.0",
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^5.2.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.0.0",
"ttypescript": "^1.5.12",
"typescript": "^4.2.4"
},
"keywords": [
"cli",
"pld",
"pld-cli",
"project log",
"project log document",
"json-pld",
"pld-json-schema"
]
}