-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "dynamodb-update-expression",
"version": "0.1.22",
"description": "A small library providing the solution to return the update expression.",
"main": "index.js",
"scripts": {
"test": "mocha test.js",
"build:browser": "browserify index.js --standalone dynamodb-update-expression | uglifyjs -c > dist/dynamodb-update-expression.min.js"
},
"repository": {
"type": "git",
"url": "git://github.com/4ossiblellc/dynamodb-update-expression.git"
},
"author": "Eric So <[email protected]>, James Azarja <[email protected]>",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/brentertz/scapegoat/blob/master/LICENSE-MIT"
}
],
"keywords": [
"dynamodb",
"DynamoDB",
"update",
"expression"
],
"dependencies": {
"deepmerge": "^1.2.0",
"lodash": "^4.16.1"
},
"devDependencies": {
"chai": "^3.5.0",
"browserify": "^13.0.1",
"leche": "^2.1.1",
"mocha": "^3.1.2",
"sinon": "^1.17.4",
"uglifyjs": "^2.4.10",
"unit.js": "^2.0.0"
}
}