-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.52 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@kite-tech/web-app-sdk",
"version": "2.0.2",
"description": "Prodigi print on demand shop SDK",
"homepage": "https://sdk.prodigi.com/print-shop",
"main": "./dist/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:dist": "jest --coverage --runInBand",
"example-build:dev": "kite-tech-webpack:dev --partner-name= --project-config-location=kite-webpack-config.js",
"example-build:dist": "kite-tech-webpack:dist --partner-name= --project-config-location=kite-webpack-config.js --env.NODE_ENV=production",
"build:dist": "webpack --config ./webpack/webpack.config.js",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"start": "npm run example-build:dev",
"commitmsg": "commitlint -e $GIT_PARAMS",
"semantic-release": "semantic-release",
"prepublishOnly": "npm run build:dist"
},
"author": "Chris Berry <chrisberry4545@googlemail.com> (http://chrisbdev.com)",
"license": "ISC",
"dependencies": {
"@kite-tech/checkout-sdk": "3.9.0-alpha.4",
"angular2-uuid": "^1.1.1"
},
"devDependencies": {
"@angular/animations": "7.2.1",
"@angular/common": "7.2.1",
"@angular/compiler": "7.2.1",
"@angular/core": "7.2.1",
"@angular/forms": "7.2.1",
"@angular/platform-browser": "7.2.1",
"@angular/platform-browser-dynamic": "7.2.1",
"@angular/router": "7.2.1",
"@commitlint/cli": "7.0.0",
"@commitlint/config-conventional": "7.0.1",
"@kite-tech/tslint": "1.0.1",
"@kite-tech/webpack": "1.2.0-alpha.2",
"@types/jest": "^23.3.14",
"@types/node": "10.3.1",
"cheerio": "1.0.0-rc.2",
"husky": "0.14.3",
"inuitcss": "6.0.0-beta.5",
"jest": "^23.1.0",
"meow": "5.0.0",
"reflect-metadata": "0.1.12",
"rxjs": "6.3.3",
"semantic-release": "15.5.2",
"ts-jest": "^22.4.6",
"ts-loader": "3.5.0",
"typescript": "3.1.6",
"webpack-cli": "^3.2.1",
"zone.js": "0.8.26"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"transform": {
"\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"collectCoverageFrom": [
"src/**/*.{ts}",
"!**/{vendor,index,*.module,*.data,*.mock,*.interface}.ts",
"!src/app/**",
"!dist/**/*",
"!**/node_modules/**",
"!**/vendor/**"
],
"testRegex": ".*spec.ts$",
"testPathIgnorePatterns": [
"/node_modules/",
"/example/"
]
},
"keywords": [
"print on demand",
"prodigi",
"print shop",
"sdk"
]
}