-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.12 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.12 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
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
86
{
"name": "mrm-task-angular-vscode",
"version": "1.10.0",
"description": "MRM task to configure VS Code and Angular project with an optimized development experience",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"config": {
"mrmSharedUrl": "https://github.com/expertly-simple/mrm-shared.git"
},
"scripts": {
"pretest": "npm run build && npm run build:test",
"test": "ts-node node_modules/jasmine/bin/jasmine --config=./jasmine.json",
"shared:clean": "cross-conf-env rimraf shared && git rm -r --cached shared",
"shared:init": "cross-conf-env git submodule add $npm_package_config_mrmSharedUrl shared",
"postshared:init": "git submodule status shared",
"modules:init": "git submodule update --init --recursive",
"modules:update": "git submodule update --recursive --remote",
"style": "import-sort -l \"{src,tests}/**/*.ts\" && prettier --check \"{src,tests}/**/*.ts\"",
"style:fix": "import-sort --write \"{src,tests}/**/*.ts\" && prettier --write \"{src,tests}/**/*.ts\"",
"lint": "tslint --config tslint.json --project .",
"lint:fix": "tslint --config tslint.json --fix --project .",
"prestart": "npm run build",
"start": "env-cmd node dist/index.js",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.src.json",
"build:test": "tsc -p tests/tsconfig.spec.json",
"prepublishOnly": "npm run test",
"prepare": "npm run build",
"test:ci": "ts-node ./node_modules/jasmine-xml-reporter/bin/jasmine.js --config=./jasmine.json --junitreport --output=test_results/",
"test:nyc": "nyc node_modules/ts-node/dist/bin.js node_modules/jasmine/bin/jasmine --config=./jasmine.json --cache=false",
"init:env": "init-dev-env generate-dot-env example.env -f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/expertly-simple/mrm-task-angular-vscode.git"
},
"keywords": [
"mrm",
"mrm-task",
"angular",
"vscode"
],
"author": "Doguhan Uluca",
"license": "MIT",
"bugs": {
"url": "https://github.com/expertly-simple/mrm-task-angular-vscode/issues"
},
"homepage": "https://github.com/expertly-simple/mrm-task-angular-vscode#readme",
"dependencies": {
"mrm-core": "^4.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/jasmine": "^3.5.0",
"@types/node": "^12.12.21",
"cross-conf-env": "^1.1.2",
"dev-norms": "^1.7.0",
"env-cmd": "^10.0.1",
"import-sort": "^6.0.0",
"import-sort-cli": "^6.0.0",
"import-sort-parser-typescript": "^6.0.0",
"import-sort-style-module": "^6.0.0",
"init-dev-env": "^1.0.0",
"jasmine": "^3.5.0",
"jasmine-node": "^3.0.0",
"jasmine-xml-reporter": "^1.2.1",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.16",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-etc": "^1.10.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.7.3"
},
"importSort": {
".ts, .tsx": {
"parser": "typescript",
"style": "module",
"options": {}
}
}
}