-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "angular-hooks",
"version": "0.0.0",
"description": "Vue composition functions in Angular",
"main": "dist/index.common.js",
"module": "dist/index.esm.js",
"typings": "dist/types/index.d.ts",
"files": ["dist"],
"repository": "https://github.com/sascha245/angular-hooks",
"license": "MIT",
"keywords": [
"angular",
"hooks",
"dynamic lifecycles",
"function api",
"composition functions"
],
"scripts": {
"clean": "rimraf dist .rpt2_cache",
"build": "npm run clean && rollup -c",
"test:unit": "echo 'TODO'",
"validate": "npm run build && npm run test:unit && npm pack --dry-run"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^23.1.4",
"rimraf": "^2.6.2",
"rollup": "^0.67.3",
"rollup-plugin-typescript2": "^0.18.0",
"ts-jest": "^23.0.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.0",
"rxjs": "^6.3.3",
"@angular/core": "^6.0.0"
},
"peerDependencies": {
"rxjs": "^6.3.3",
"@angular/core": "^6.0.0"
}
}