-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.73 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
{
"name": "ng1-shift",
"version": "0.2.0",
"description": "Angular 1.5+ decorators for writing Angular2 like.",
"files": [
"dist"
],
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"prepack": "npm run build",
"build": "rimraf dist && rollup -c",
"test": "jest --watchAll",
"lint": "tslint -p ./ --force --format stylish",
"lint-watch": "npm run lint && onchange './**/*.ts' -d 300 -- npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/readdle/ng1-shift.git"
},
"keywords": [
"angular",
"angularJS",
"ng",
"ng1",
"components",
"migrate"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/readdle/ng1-shift/issues"
},
"homepage": "https://github.com/readdle/ng1-shift#readme",
"jest": {
"transform": {
".ts": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(\\.(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"angular": "^1.5.0",
"typescript": "^5.x",
"tslib": "^2.4.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^6.1.0",
"@types/angular": "^1.8.0",
"@types/jest": "^26.0.15",
"@types/node": "^13.9.2",
"fsevents": "^2.1.2",
"jest": "^26.6.3",
"onchange": "^5.0.2",
"rollup": "^2.33.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"tslib": "^2.4.0",
"tslint": "^5.9.1",
"typescript": "^5.2.2"
}
}