-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 980 Bytes
/
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
{
"name": "@luxuryescapes/lib-config",
"version": "0.0.6",
"description": "Config loader",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": "[email protected]:brandsExclusive/lib-config.git",
"author": "Chris Nguyen <[email protected]>",
"license": "UNLICENSED",
"files": [
"lib",
"src"
],
"scripts": {
"lint": "standard src && prettier-standard src --check",
"lint:fix": "prettier-standard src --lint --fix",
"build": "rm -rf lib && tsc",
"test": "ts-node src/index.test.ts",
"prepare": "yarn run build",
"prepublishOnly": "yarn test && yarn run lint",
"preversion": "yarn run lint",
"postversion": "git push && git push --tags"
},
"dependencies": {
"ajv": "^6.11.0"
},
"devDependencies": {
"@types/json-schema": "^7.0.9",
"@types/node": "^14",
"prettier-standard": "^16.1.0",
"standard": "^14.3.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}