-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·74 lines (74 loc) · 1.86 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "sprightly",
"version": "2.0.1",
"description": "JavaScript lightweight template engine",
"keywords": [
"template engine"
],
"homepage": "https://github.com/obadakhalili/sprightly.git",
"repository": {
"type": "git",
"url": "https://github.com/obadakhalili/sprightly.git"
},
"license": "MIT",
"author": "Obada Khalili <[email protected]> (http://github.com/obadakhalili)",
"contributors": [
"Obada Khalili <[email protected]> (http://github.com/obadakhalili)",
"Osid Abu-Alrub <[email protected]> (https://github.com/OsidAbu-alrub)"
],
"exports": {
".": {
"types": "./dist/sprightly.d.ts",
"default": "./dist/sprightly.js"
},
"./express": {
"types": "./dist/adapters/express.d.ts",
"default": "./dist/adapters/express.js"
}
},
"main": "./dist/sprightly.js",
"types": "./dist/sprightly.d.ts",
"typesVersions": {
"*": {
"express": [
"./dist/adapters/express.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"build:watch": "pnpm build --watch",
"dev": "nodemon dist/sprightly.js",
"format": "prettier --write .",
"prepare": "husky install",
"prepublishOnly": "pnpm build",
"sort-pkgjson": "sort-package-json",
"test": "jest",
"test:watch": "jest --watch"
},
"lint-staged": {
"*.{js,ts,md,yml,yaml,json}": "prettier --write"
},
"dependencies": {
"get-value": "^3.0.1"
},
"devDependencies": {
"@types/get-value": "^3.0.3",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.5",
"husky": "^8.0.1",
"jest": "^28.1.2",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"sort-package-json": "^1.57.0",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=10.0.0"
}
}