-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.11 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
76
77
78
79
80
81
82
83
84
85
{
"name": "import-locals",
"description": "Allows you to import local variables, functions and classes from other modules",
"license": "MIT",
"author": {
"name": "Alex Owl",
"email": "AlexOwl@protonmail.com",
"url": "https://AlexOwl.github.com/"
},
"homepage": "https://github.com/AlexOwl/import-locals#readme",
"repository": "AlexOwl/import-locals",
"bugs": {
"email": "AlexOwl@protonmail.com",
"url": "https://github.com/AlexOwl/import-locals/issues"
},
"version": "2.0.0",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"clean": "rimraf lib",
"format": "run-s format:* -l",
"format:package": "prettier-package-json --write --expand-users",
"format:prettier": "prettier-tslint fix",
"format:tslint": "tslint -p tsconfig.json --fix",
"prepare": "run-s format test clean build",
"start": "node lib",
"start:dev": "node --inspect -r ./node_modules/ts-node/register src",
"start:dev:watch": "nodemon --exec npm run start:dev",
"test": "run-s test:* -ns",
"test:jest": "jest --passWithNoTests",
"test:tsc": "tsc --noEmit"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "24.0.0",
"@types/node": "latest",
"jest": "24.0.0",
"nodemon": "latest",
"npm-run-all": "latest",
"prettier": "latest",
"prettier-package-json": "latest",
"prettier-tslint": "latest",
"rimraf": "latest",
"ts-jest": "24.0.0",
"ts-node": "latest",
"tslint": "latest",
"tslint-config-prettier": "latest",
"tslint-config-standard": "latest",
"typescript": "latest"
},
"keywords": [
"export",
"import",
"include",
"local",
"locals",
"module",
"modules",
"require",
"userland",
"var",
"variable",
"variables",
"vars"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**",
"!**/@types/**",
"!**/index.ts"
],
"coverageReporters": [
"text"
],
"verbose": true,
"bail": true
}
}