-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "dewey",
"version": "0.1.4",
"description": "Make lerna.js work for serverless",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -b",
"dev": "nodemon --watch 'src/**/*' -e tsc -- -b",
"build:docs": "tsc -b && npm run generate:docs",
"generate:docs": "typedoc && touch docs/.nojekyll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samrocksc/dewey.git"
},
"author": "Sam C <samrocksc@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/samrocksc/dewey/issues"
},
"homepage": "https://github.com/samrocksc/dewey#readme",
"dependencies": {
"fs-extra": "^9.0.0"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"nodemon": "^2.0.2",
"prettier": "^2.0.2",
"ts-node": "^8.8.2",
"typedoc": "^0.17.3",
"typescript": "^3.8.3"
}
}