-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.46 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
{
"name": "@roguib/ng-vs-snippets",
"version": "0.3.0",
"description": "Automatic VS Code snippet file generation for Angular codebases",
"author": "roguib",
"license": "MIT",
"homepage": "https://github.com/roguib/ng-vs-snippets",
"repository": "github:roguib/ng-vs-snippets",
"bugs": "https://github.com/roguib/ng-vs-snippets/issues",
"keywords": [
"vs code",
"snippets",
"snippets generator",
"angular",
"vs snippets"
],
"main": "build/@roguib/ng-vs-snippets.js",
"types": "build/@roguib/ng-vs-snippets.d.ts",
"bin": {
"ng-vs-snippets": "build/@roguib/ng-vs-snippets.js"
},
"scripts": {
"build:cjs": "rollup -c",
"check": "tsc",
"run": "node ./build/@roguib/ng-vs-snippets.js",
"test": "jest ./tests/* --reporters=jest-standard-reporter",
"benchmarks": "tsc tests/benchmarks/benchmarks.ts && node tests/benchmarks/benchmarks.js",
"auto-publish": "tsc scripts/auto-publish.ts && node scripts/auto-publish.js",
"prettier": "prettier",
"test-command": "cd tests/benchmarks && jest ../*"
},
"dependencies": {
"@types/jest": "^26.0.24",
"benchmark": "^2.1.4",
"jest-standard-reporter": "^2.0.0",
"prettier": "^2.3.2",
"rollup": "^2.56.2",
"rollup-plugin-add-shebang": "^0.3.1",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/node": "^14.17.9",
"jest": "^26.6.3"
}
}