-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.8 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
{
"author": "Chris Shaw <[email protected]>",
"description": "Support code for the compose project",
"engines": {
"node": ">= 10.x",
"yarn": ">= 1.10.x"
},
"files": [
"dist/"
],
"keywords": [
"aem",
"design",
"support",
"compose",
"node",
"logging",
"log",
"front end",
"front-end",
"frontend",
"typescript"
],
"license": "Apache-2.0",
"main": "dist/commonjs",
"module": "dist/module",
"types": "dist/types",
"sideEffects": false,
"name": "@aem-design/compose-support",
"repository": {
"type": "git",
"url": "https://github.com/aem-design/npm-compose-support"
},
"bugs": {
"url": "https://github.com/aem-design/npm-compose-support/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && npm run build.module && npm run build.commonjs && npm run build.types",
"build.module": "tsc --module es2015 --outDir dist/module --declaration false",
"build.commonjs": "tsc --module commonjs --outDir dist/commonjs --declaration false",
"build.types": "tsc --emitDeclarationOnly --declaration true --declarationDir dist/types",
"build.ast": "api-extractor run --local --verbose",
"clean": "rm -rf dist",
"lint": "eslint '**/*.ts'",
"prepack": "npm run build",
"postversion": "npm run test && git push && git push --tags",
"watch": "tsc --watch"
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "npm run lint"
}
},
"version": "1.2.1",
"dependencies": {
"chalk": "^4.0.0"
},
"devDependencies": {
"@types/node": "^14.0.26",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"typescript": "^3.8.3"
}
}