-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.47 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
44
45
46
47
48
49
50
51
52
53
{
"name": "dynalee",
"version": "0.4.4",
"description": "Typescript DynamoDB ORM",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/deptno/dynalee.git",
"author": "Bonggyun Lee <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npm run compile",
"build:watch": "npm run compile -- --watch",
"build:config": "tsc -p tsconfig.config.json",
"test": "jest",
"compile": "npm run build:config; tsc -p tsconfig.cjs.json",
"rollup": "npm run build && rollup -c; node -e \"console.log(require('.'))\"",
"prepare": "rm -rf dist; npm run build"
},
"engines": {
"node": ">=8.10"
},
"engineStrict": true,
"dependencies": {
"debug": "^4.1.0",
"immer": "^1.9.3",
"number-converter-alphabet": "^1.1.0",
"ramda": "^0.25.0"
},
"peerDependencies": {
"aws-sdk": "*"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"@babel/preset-typescript": "^7.1.0",
"@types/aws-sdk": "^2.7.0",
"@types/debug": "0.0.31",
"@types/faker": "^4.1.4",
"@types/jest": "^23.3.10",
"@types/node": "^10.12.18",
"@types/ramda": "^0.25.45",
"faker": "^4.1.0",
"inject-direnv": "^0.3.1",
"jest": "^23.6.0",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"source-map-support": "^0.5.9",
"ts-jest": "^23.10.5",
"typescript": "^3.2.2"
}
}