-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.28 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
{
"name": "ng-lifecycle-debug",
"version": "1.0.2",
"description": "Decorator to quickly add and remove logging for Angular lifecycle hooks in your components",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf ./dist && tsc",
"prepublish": "rm -rf ./dist && npm test && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"version": "git add -A",
"postversion": "git push && git push --tags"
},
"keywords": [
"angular",
"lifecycle",
"debugging",
"debug"
],
"author": "Steve Strugnell",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.2",
"jest": "^23.6.0",
"ts-jest": "^23.1.4",
"typescript": "^2.9.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"typings": "./dist/index.d.ts",
"repository": {
"url": "git+https://github.com/squigg/ng-lifecycle-debug.git"
},
"maintainers": [
{
"name": "Steve Strugnell"
}
],
"homepage": "https://github.com/squigg/ng-lifecycle-debug#readme",
"bugs": {
"url": "https://github.com/squigg/ng-lifecycle-debug/issues"
}
}