-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
41
42
43
{
"name": "practical",
"version": "1.1.2",
"description": "Practical ActiveRecord for DynamoDB",
"main": "./dist/model.js",
"author": "Andrés Santibáñez (santibanez.andres@gmail.com)",
"license": "MIT",
"engines": {
"node": ">=4.3.0"
},
"dependencies": {
"aws-sdk": "^2.7.27",
"bluebird": "^3.4.7",
"mocha": "^3.2.0",
"moment": "^2.17.1"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-env": "^1.1.8",
"expect.js": "^0.3.1",
"faker": "^3.1.0",
"mocha": "^3.2.0"
},
"scripts": {
"build": "babel src -d dist",
"pretest": "npm run database-setup && npm run build",
"test": " mocha --reporter spec",
"dynamodb-local": "cd dynamodb-local && java -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar -sharedDb -inMemory",
"database-setup": "cd test/database && node migrate && node seeder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asantibanez/practical.git"
},
"keywords": [
"dynamodb",
"activerecord"
],
"bugs": {
"url": "https://github.com/asantibanez/practical/issues"
},
"homepage": "https://github.com/asantibanez/practical#readme"
}