-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.62 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "env-emitter",
"version": "1.0.0",
"description": "Adds event emitters to process.env",
"main": "dist/index.js",
"keywords": [
"events",
"emits",
"emit",
"listeners",
"environment",
"env"
],
"scripts": {
"test": "TEST_FOO=bar jest",
"lint": "eslint .",
"validate": "run-s test lint",
"build": "rm -rf dist/ && tsc",
"prerelease": "git checkout master && git pull origin master && npm run validate",
"release": "standard-version",
"prepublishOnly": "run-s test build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justinkalland/env-emitter.git"
},
"author": "Justin Kalland <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/justinkalland/env-emitter/issues"
},
"homepage": "https://github.com/justinkalland/env-emitter#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": "eslint",
"*.ts": "eslint"
},
"eslintConfig": {
"extends": "jk-ts"
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^11.0.0",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@types/sinon": "^9.0.4",
"eslint-config-jk-ts": "^1.5.0",
"jest": "^26.0.1",
"npm-run-all": "^4.1.5",
"sinon": "^9.0.2",
"standard-version": "^9.0.0",
"ts-jest": "^26.1.0",
"ts-node": "^9.1.1",
"typescript": "^3.9.5"
},
"dependencies": {},
"files": [
"dist/index.js",
"dist/index.d.ts"
]
}