-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 967 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
{
"name": "@edge/config",
"version": "0.4.0",
"description": "Simple configuration management library",
"main": "dist/lib/index.js",
"author": "Edge Network <[email protected]>",
"contributors": [
"Adam K Dean <[email protected]>"
],
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --fix --ext .ts src",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'"
},
"devDependencies": {
"@edge/eslint-config-typescript": "^0.1.1",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.4.3"
},
"dependencies": {
"dotenv": "^10.0.0"
}
}