-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.98 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@staticdeploy/app-config",
"description": "Configuration for static apps",
"version": "2.0.2",
"publishConfig": {
"access": "public"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"bin": {
"inject-config": "./bin/inject-config.js",
"dev-config-server": "./bin/dev-config-server.js"
},
"files": [
"bin",
"lib"
],
"author": "Paolo Scanferla <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/staticdeploy/app-config.git"
},
"homepage": "https://github.com/staticdeploy/app-config",
"bugs": {
"url": "https://github.com/staticdeploy/app-config/issues"
},
"scripts": {
"compile": "rimraf lib && tsc",
"prettier": "prettier 'src/**/*.ts' 'test/**/*.ts' 'docs/**/*.md'",
"prettify": "yarn prettier --write",
"lint:prettier": "yarn prettier --list-different",
"lint:tslint": "tslint 'src/**/*.ts' 'test/**/*.ts'",
"lint": "yarn lint:prettier && yarn lint:tslint",
"test": "mocha --exit -r ts-node/register --watch-extensions ts 'test/**/*.ts'",
"coverage": "nyc --all yarn test",
"publish-coverage": "codecov"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"lodash": "^4.17.15",
"yargs": "^14.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/cheerio": "^0.22.13",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/lodash": "^4.14.138",
"@types/mocha": "^5.2.7",
"@types/supertest": "^2.0.8",
"@types/yargs": "^13.0.2",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"create-fs-tree": "^1.0.0",
"husky": "^3.0.4",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"supertest": "^4.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.2",
"vm2": "^3.8.3"
}
}