-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.52 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.52 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@faceteer/expression-builder",
"version": "2.0.1",
"description": "An expression builder for Dynamo DB",
"main": "condition.js",
"scripts": {
"build:clean": "tsc -b --clean",
"build": "tsc -b --clean && tsc -b",
"prepublishOnly": "npm run build",
"test": "jest --silent"
},
"engines": {
"node": ">=12.4.0"
},
"keywords": [
"DynamoDB"
],
"files": [
"condition.d.ts",
"condition.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/faceteer/expression-builder.git"
},
"author": "Alex McKenzie",
"license": "MIT",
"bugs": {
"url": "https://github.com/faceteer/expression-builder/issues"
},
"homepage": "https://github.com/faceteer/expression-builder#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.1",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.0.6",
"jest-junit": "^12.2.0",
"prettier": "^2.3.0",
"ts-jest": "^27.1.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.2"
},
"dependencies": {
"@faceteer/converter": "^2.0.3"
}
}