-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.52 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
{
"name": "NgTestGenerator",
"version": "1.0.0",
"description": "angular test generator for component render tests",
"main": "src/parser.js",
"scripts": {
"start": "./node_modules/.bin/tsc && node ./dist/parser.js",
"watch": "./node_modules/.bin/nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/parser.ts",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint . --fix",
"ng": "cd sample-web-app && (npm run test & npm start)",
"test": "echo \"Error: no test specified\" && exit 1",
"runall": "npm run watch & npm run ng",
"runall-win": "start npm run watch && start npm run ng"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nishant/NgTestGenerator.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nishant/NgTestGenerator/issues"
},
"homepage": "https://github.com/nishant/NgTestGenerator#readme",
"devDependencies": {
"@types/node": "^16.7.5",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-unicorn": "^35.0.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"prettier-plugin-organize-imports": "^2.3.3",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "^4.4.2"
}
}