-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "@webacad/env",
"description": ".env file loader written in typescript",
"version": "1.3.1",
"keywords": [
"dotenv",
"env"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:Web-ACAD/js-env.git"
},
"author": {
"name": "David Kudera",
"email": "[email protected]",
"url": "https://www.davidkudera.com"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"dependencies": {
"dotenv": "^5.0.1"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/dotenv": "^4.0.2",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.0",
"chai": "^4.1.2",
"mocha": "^5.0.5",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "mocha -r ts-node/register test/tests/*.ts",
"lint": "npm run lint:src && npm run lint:test",
"lint:src": "tslint --project tsconfig.json",
"lint:test": "tslint --project test/tsconfig.json",
"pretest": "npm run build",
"prepublishOnly": "npm run build"
}
}