forked from ItalyPaleAle/SMCloudStore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.34 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
{
"name": "@smcloudstore/builder",
"private": true,
"version": "0.1.0",
"scripts": {
"bootstrap": "sh scripts/bootstrap.sh",
"compile": "npm run tsc",
"tsc": "sh scripts/compile.sh",
"test": "npm run compile && sh scripts/test.sh",
"tslint": "find packages/*/src -name *.ts -type f -exec './node_modules/.bin/tslint' {} \\;",
"eslint": "./node_modules/.bin/eslint -c .eslintrc.yml .",
"lint": "npm run tslint && npm run eslint",
"typedoc": "sh scripts/docs.sh",
"docs": "npm run typedoc",
"prepublishOnly": "npm run test"
},
"author": "Alessandro Segala (ItalyPaleAle)",
"license": "MIT",
"homepage": "https://github.com/ItalyPaleAle/SMCloudStore",
"engines": {
"node": ">= 8.9.1"
},
"dependencies": {},
"devDependencies": {
"@types/minio": "^7.0.1",
"@types/node": "^10.12.18",
"digest-stream": "^2.0.0",
"eslint": "^5.12.0",
"nyc": "13.1.0",
"lerna": "^3.10.7",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"randomstring": "^1.1.5",
"request": "^2.88.0",
"semver": "^5.6.0",
"source-map-support": "^0.5.10",
"tslint": "^5.12.1",
"typedoc": "^0.13.0",
"typedoc-plugin-monorepo": "^0.1.0",
"typescript": "^3.1.6"
},
"nyc": {
"include": [
"packages"
],
"reporter": [
"html"
],
"all": true
}
}