-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "@valantic/spartacus-blueprints",
"version": "3.0.0",
"description": "Custom Schematics implementation for Angular/Spartacus Blueprints from Valantic Spartacus Base Setup.",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json --watch",
"test": "npm run build && jasmine src/**/*_spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/valantic/spartacus-blueprint"
},
"engines": {
"node": ">=18",
"npm": ">=9.5.1"
},
"author": "valantic CEC",
"license": "MIT",
"bugs": {
"url": "https://github.com/valantic/spartacus-blueprint/issues"
},
"homepage": "https://github.com/valantic/spartacus-blueprint",
"keywords": [
"schematics",
"angular",
"spartacus",
"valantic"
],
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "~17.3.5",
"@angular-devkit/schematics": "~17.3.5",
"@schematics/angular": "~17.3.5",
"typescript": "~5.4.5"
},
"devDependencies": {
"@angular-devkit/schematics-cli": "~17.3.5",
"@types/jasmine": "~5.1.4",
"@types/node": "~18.19.31",
"jasmine": "~5.1.0"
}
}