This repository has been archived by the owner on Sep 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.93 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
{
"name": "ng2react-builder",
"description": "Builder of React.js components from Angular1 sources",
"version": "0.8.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"pretest": "npm run lint",
"test": "npx jest --no-cache",
"lint": "npx tslint \"src/**/*.ts\" && npx tslint \"src/*.ts\"",
"prepare": "npm test && npm run build",
"build": "rm -rf dist && npx tsc",
"precoverage": "npm test",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"angularjs",
"Angular1",
"React.js",
"migration"
],
"author": "webschik",
"license": "MIT",
"dependencies": {
"angular": "^1.6.9",
"parse5": "^4.0.0",
"prettier": "^1.11.1",
"typescript": "^2.8.1"
},
"devDependencies": {
"@types/jest": "^22.2.2",
"@types/node": "^9.6.1",
"@types/prettier": "^1.10.0",
"@types/react": "^16.3.0",
"@types/yargs": "^11.0.0",
"coveralls": "^3.0.0",
"jest": "^22.4.3",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-config-webschik": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webschik/ng2react.git"
},
"bugs": {
"url": "https://github.com/webschik/ng2react/issues"
},
"homepage": "https://github.com/webschik/ng2react#readme",
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageReporters": [
"cobertura",
"html",
"lcov"
],
"collectCoverageFrom": [
"src/*.{ts,tsx}",
"src/**/*.{ts,tsx}"
],
"testRegex": "(/__tests__/component7/.*|\\.(spec))\\.(ts)$",
"transform": {
".*": "<rootDir>/jest/preprocessor.js"
},
"setupTestFrameworkScriptFile": "<rootDir>/jest/config.js",
"testPathIgnorePatterns": [
"/node_modules/",
"controller\\.(ts|js)$",
"index\\.tsx$"
],
"moduleFileExtensions": [
"ts",
"js"
]
}
}