forked from alibaba/lowcode-datasource
-
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.08 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.08 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": "@alilc/lowcode-datasource-engine",
"version": "1.2.1",
"description": "DataSource Engine for lowcode",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"es",
"src",
"interpret*",
"runtime*"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc && npm run build:es",
"build:es": "tsc --target es5 --module es6 --outDir es",
"test": "ava",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@alilc/lowcode-datasource-types": "^1.2.1",
"@alilc/lowcode-types": "^1.3.0",
"lodash": "^4.17.21",
"tslib": "^2.0.1"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@types/lodash": "^4.17.0",
"@types/promise.allsettled": "^1.0.3",
"@types/sinon": "^9.0.5",
"ava": "3.11.1",
"get-port": "^5.1.1",
"json5": "^2.1.3",
"sinon": "^9.0.3",
"ts-node": "^8.10.2",
"typescript": "^4.6.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"gitHead": "714230d68a17fc010fbe80b511802bb410188fb5"
}