-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.92 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
68
69
70
71
72
73
74
75
{
"name": "venv",
"version": "1.0.1",
"description": "Use build-time environment variables in your application",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/GaryB432/venv.git"
},
"keywords": [
"environment",
"variables",
"angular",
"cli"
],
"files": [
"lib"
],
"bin": "lib/venv.js",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepare": "npm run build",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"test": "jest",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch"
},
"dependencies": {
"ejs": "^2.5.7",
"fs-extra": "^4.0.1",
"yargs": "^8.0.2"
},
"devDependencies": {
"@types/ejs": "^2.3.33",
"@types/fs-extra": "^4.0.0",
"@types/jest": "^20.0.5",
"@types/md5": "^2.1.32",
"@types/node": "^8.0.0",
"@types/yargs": "^8.0.2",
"coveralls": "^2.0.0",
"jest": "^20.0.4",
"jest-environment-node-debug": "^2.0.0",
"prettier": "^1.5.2",
"rimraf": "^2.0.0",
"ts-jest": "^20.0.7",
"ts-node": "^3.2.0",
"tslint": "^5.0.0",
"tslint-config-prettier": "^1.1.0",
"typescript": "^2.0.0"
},
"engines": {
"node": ">=6.0.0"
},
"bugs": {
"url": "https://github.com/GaryB432/venv/issues"
},
"homepage": "https://github.com/GaryB432/venv#readme",
"jest": {
"transform": {
".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node"
}
}