-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 965 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
36
37
{
"name": "env-var-fp",
"version": "1.0.0",
"description": "Functional utility for parsing env variables",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"lint": "tslint -c tslint.json \"{src,test}/**/*.ts\"",
"test": "mocha --compilers ts:ts-node/register",
"test:watch": "npm test -- --watch",
"build": "tsc",
"prepublish": "npm run clean && npm run build"
},
"author": "Giff Song <[email protected]>",
"license": "MIT",
"repository": "pawsong/env-var-fp",
"files": [
"src",
"lib"
],
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/invariant": "^2.2.28",
"@types/lodash": "^4.14.53",
"@types/mocha": "^2.2.39",
"@types/node": "^8.0.28",
"chai": "^4.1.2",
"lodash": "^4.17.4",
"mocha": "^5.2.0",
"rimraf": "^2.6.0",
"ts-node": "^7.0.0",
"tslint": "^5.7.0",
"typescript": "^3.0.1"
}
}