-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "tracefs",
"version": "1.2.1",
"description": "Node fs calls tracer",
"author": "Victor Vlasenko <[email protected]>",
"scripts": {
"prepack": "rm -rf lib && tsc && rollup -c --banner '#!/usr/bin/env node'",
"postpack": "rm -rf lib",
"lint": "eslint --fix src/**/*.ts"
},
"main": "src/boot-dev.js",
"bin": "src/boot-dev.js",
"publishConfig": {
"main": "lib/index.js",
"bin": "lib/bundle.js",
"types": "lib/index.d.ts"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sysgears/tracefs.git"
},
"bugs": {
"url": "https://github.com/sysgears/tracefs/issues"
},
"homepage": "https://github.com/sysgears/tracefs/tree/master/packages/generator#readme",
"files": [
"lib/**",
"src/**",
"index.js",
"LICENSE",
"README.md"
],
"dependencies": {
"chalk": "^2.4.2",
"cross-spawn": "^7.0.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@types/node": "^11.11.3",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^4.3.8",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rollup": "^1.26.2",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"ts-node": "^9.1.1",
"typescript": "^3.5.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}