-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "nets-example",
"version": "1.2.0",
"description": "Reference implementation for integrating a web-based POS application with Nets payment terminals via CEFSharp and Baxi.NET",
"main": "example/index.html",
"directories": {
"doc": "docs"
},
"scripts": {
"commit": "git-cz",
"build:release": ".\\script\\build\\build-release.bat",
"build:release:local": "npm run build:release -- --localhost",
"build:debug": ".\\script\\build\\build-debug.bat",
"build:debug:local": "npm run build:debug -- --localhost",
"create-cert-key": ".\\script\\create-cert-key.bat",
"create-pfx": ".\\script\\create-pfx.bat",
"start": "node ./node_modules/http-server/bin/http-server -o --cors example"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"nets": {
"password": "nets"
}
},
"repository": {
"type": "git",
"url": "https://github.com/TimmaLabs/TimmaExample.git"
},
"bugs": {
"url": "https://github.com/TimmaLabs/TimmaExample/issues"
},
"homepage": "https://timma.fi",
"keywords": [
"Nets",
"Baxi.NET",
"POS",
"iCT250",
"iPP350",
"Ingenico",
"cef"
],
"author": "Timma Oy Ab",
"license": "Apache-2.0",
"devDependencies": {
"commitizen": "^2.9.2",
"cz-conventional-changelog": "^1.2.0",
"http-server": "^0.9.0"
},
"private": true
}