-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 KB
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
{
"name": "env-o-loader",
"version": "2.0.60",
"description": "config loader with envvar support",
"main": "index.js",
"types": "index.d.ts",
"typings": "index.d.ts",
"engines": {
"node": ">= 6.10.0"
},
"scripts": {
"clean": "find test -name \"*.js\" -delete",
"build": "npm run clean && tsc -p test",
"lint": "eslint --env es6 --env node --no-eslintrc index.js",
"test": "npm run lint && npm run build && mocha --reporter dot"
},
"author": {
"name": "ℜodrigo ℭacilhας",
"email": "<batalema@cacilhas.info>",
"url": "http://cacilhas.info/kodumaro"
},
"repository": {
"type": "git",
"url": "git@bitbucket.org:cacilhas/env-o-loader.git"
},
"bugs": {
"url": "https://github.com/cacilhas/env-o-loader/issues"
},
"license": "BSD-3-Clause",
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.8",
"@types/should": "^8.3.0",
"@types/underscore": "^1.8.1",
"chai": "^4.1.1",
"mocha-co": "^1.17.2",
"should": "^11.2.1",
"typescript": "^2.4.1"
},
"dependencies": {
"callsites": "^2.0.0",
"iso8601-duration": "^1.0.6",
"js-yaml": "^3.10.0",
"qs": "^6.5.0",
"underscore": "^1.8.3"
}
}