-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 3.48 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@coon-js/extjs-lib-core",
"sencha": {
"name": "extjs-lib-core",
"version": "1.1.1",
"compatVersion": "1.1.1",
"namespace": "coon.core",
"type": "code",
"creator": "coon.js",
"summary": "core library for rapic ExtJS application building",
"detailedDescription": "This package contains extended and advanced implementations for ExtJS projects and provides a solid base for application building.",
"format": "1",
"slicer": null,
"output": {
"base": "${package.dir}/build",
"resources": {
"compress": false
},
"js": {
"version": "ES8"
}
},
"language": {
"js": {
"input": "ES8",
"output": "ES8"
}
},
"compressor": {
"type": "closure",
"polyfills": "none",
"compress": false
},
"local": true,
"sass": null,
"classpath": [
"${package.dir}/src"
],
"overrides": [
"${package.dir}/overrides"
],
"example": null,
"framework": "ext",
"requires": [
"core",
"package-loader"
]
},
"description": "NPM package providing ExtJS core functionality for rapid, modular application development.",
"version": "1.1.1",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build:dev": "npm run build:test && npx node-git-hooks",
"build:test": "npm i --save-dev && npx extjs-link && npx siesta-lib-helper",
"postversion": "git push && git push --tags",
"preversion": "npx delorean -r",
"test": "npx ws --port 8060 --static.index tests.redirect.html --open",
"release": "standard-version",
"release:patch": "npm run preversion && standard-version --release-as patch && npm run postversion",
"release:minor": "npm run preversion && standard-version --release-as minor && npm run postversion",
"release:major": "npm run preversion && standard-version --release-as major && npm run postversion",
"update:package.json": "node bin/updatePackageJson.mjs"
},
"standard-version": {
"scripts": {
"postbump": "npm run update:package.json"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/coon-js/extjs-lib-core.git"
},
"keywords": [
"ExtJS",
"Sencha",
"JavaScript",
"l8.js",
"l8js",
"coon.js",
"coonjs",
"coon-js",
"core",
"library"
],
"author": "Thorsten Suckow-Homberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/coon-js/extjs-lib-core/issues"
},
"homepage": "https://github.com/coon-js/extjs-lib-core#readme",
"dependencies": {
"@l8js/l8": "^0.9.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^13.2.0",
"@coon-js/delorean": "^0.3.1",
"@coon-js/extjs-link": "^0.1.10",
"@coon-js/extjs-package-loader": "^0.1.10",
"@coon-js/siesta-lib-helper": "^0.1.16",
"babel-plugin-comments": "^1.0.4",
"eslint": "^7.32.0",
"local-web-server": "^4.2.1",
"node-git-hooks": "^1.0.6",
"siesta-lite": "^5.5.2",
"standard-version": "^9.3.1"
}
}