-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 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
{
"name": "enonic-wizardry",
"sideEffects": false,
"version": "0.3.15",
"description": "Functional utility library for Enonic XP",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf ./*.d.ts ./*.js ./reporters",
"build": "npm run clean && tsc",
"lint": "eslint --fix --ext .ts .",
"prepublishOnly": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ItemConsulting/enonic-wizardry.git"
},
"keywords": [
"enonic",
"fp"
],
"author": "Tom Arild Jakobsen <tajakobsen@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ItemConsulting/enonic-wizardry/issues"
},
"homepage": "https://github.com/ItemConsulting/enonic-wizardry#readme",
"dependencies": {
"enonic-fp": "^0.3.17",
"enonic-types": "^0.3.9",
"fp-ts": "^2.11.5",
"io-ts": "^2.2.16"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
}
}