-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.12 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.12 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "dynamo-update-expression",
"version": "0.0.0-development",
"description": "Generate DynamoDB Update Expression by diff-ing original and updated documents",
"main": "lib/index.js",
"scripts": {
"commit": "git-cz",
"test": "npm run eslint && jest --verbose",
"prebuild": "rimraf lib",
"build": "babel --copy-files --out-dir lib --ignore *.spec.js src",
"eslint": "./node_modules/.bin/eslint src --quiet",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"jsonpath": "^0.2.11",
"lodash": "^4.17.4"
},
"devDependencies": {
"@bubltechnology/customizable-commit-analyzer": "^1.0.2-0",
"babel-cli": "~6.24.0",
"babel-eslint": "^7.2.1",
"babel-plugin-transform-object-rest-spread": "~6.23.0",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-preset-env": "~1.2.2",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "~3.18.0",
"jest": "~19.0.2",
"jest-cli": "^19.0.2",
"rimraf": "^2.6.1",
"semantic-release": "^6.3.6"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"commitTypeMap": {
"feat": "minor",
"fix": "patch",
"docs": "patch",
"refactor": "patch",
"perf": "patch",
"style": null,
"test": null,
"chore": null
}
},
"release": {
"analyzeCommits": "@bubltechnology/customizable-commit-analyzer"
},
"repository": {
"type": "git",
"url": "https://github.com/sdawood/dynamo-update-expression.git"
},
"keywords": [
"dynamodb",
"DynamoDB",
"dynamo",
"update",
"expression",
"generator",
"diff",
"version",
"condition",
"optimistic",
"lock"
],
"files": [
"lib",
"README.md",
"LICENSE"
],
"author": "Shaady Dawood <shaadydawood@gmail.com> (http://github.com/sdawood/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sdawood/dynamo-update-expression/issues"
},
"homepage": "https://github.com/sdawood/dynamo-update-expression#readme"
}