-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.05 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.05 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
{
"name": "node.extjs",
"description": "This port will handle the porting of Ext.data and Ext.util classes, as well as any functionality that doesn't depend on a DOM being present. It does not handle the porting of the Grid, or any of the classes that require a DOM. Porting is done with a least-effort basis, so the files are mostly the same, just with an added \"var Ext = ...\" line to make them work. Do *not* require a sub-module (eg: Ext.util.MixedCollection) directly as none of them actually return anything.",
"version": "0.0.0",
"main": "index.js",
"directories": {
"example": "examples",
"test": "tests"
},
"devDependencies": {
"jest": "^28.1.2"
},
"scripts": {
"test": "jest",
"symlink": "ln -s ../ node_modules/Ext"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobinStamer/Node.ExtJS.git"
},
"author": "Robin Stamer",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/RobinStamer/Node.ExtJS/issues"
},
"homepage": "https://github.com/RobinStamer/Node.ExtJS#readme"
}