-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.69 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
{
"name": "@codemorph/devkit",
"workspaces": [
"src/rz/angular"
],
"version": "1.4.3",
"description": "Devkit for Code Morph core",
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"prepack": "npm run build",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/razroo/razzle"
},
"keywords": [
"razroo",
"codemod"
],
"publishConfig": {
"access": "public"
},
"author": "Razroo",
"license": "RAZROO",
"bugs": {
"url": "https://github.com/razroo/codemorph-devkit/issues"
},
"homepage": "https://github.com/razroo/codemorph-devkit#readme",
"dependencies": {
"@ctrl/tinycolor": "^3.6.0",
"ejs": "^3.1.9",
"lodash": "^4.17.21",
"tslib": "^2.3.0"
},
"devDependencies": {
"@types/ejs": "^3.1.2",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.14.195",
"jest": "^27.0.7",
"ts-jest": "^27.1.5"
},
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"files": [
"lib/**/*"
]
}