-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "perm-cli",
"version": "0.2.5",
"description": "Perm is a lightweight Personal Relationship Management system for use with Markdown",
"main": "dist/index.js",
"source": "src/index.ts",
"type": "module",
"bin": {
"perm": "dist/index.js"
},
"author": "Luke Hansford",
"license": "MIT",
"scripts": {
"build": "parcel build --no-source-maps",
"lint:fix": "npm run lint --fix",
"lint": "eslint src --ext .js,.ts",
"start": "npm run build && node dist/index.js",
"test:watch": "jest --watchAll",
"test": "jest --config ./config/jest.config.js"
},
"devDependencies": {
"@parcel/packager-ts": "^2.7.0",
"@parcel/transformer-typescript-types": "^2.7.0",
"@types/inquirer": "^9.0.1",
"@types/jest": "^28.1.7",
"eslint-config-lukehansford-base": "^1.2.2",
"eslint-plugin-jest-formatting": "^3.1.0",
"jest": "^28.1.3",
"parcel": "^2.7.0",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"dependencies": {
"chalk": "5.2.0",
"commander": "^9.4.0",
"date-fns": "^2.29.1",
"gray-matter": "^4.0.3"
},
"@parcel/transformer-js": {
"inlineFS": false,
"inlineEnvironment": false
},
"targets": {
"main": {
"context": "node"
}
}
}