-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 2.38 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
64
{
"name": "heartland-tokenization",
"version": "2.4.1",
"description": "This plugin allows you to use your SecureSubmit Public API Key to convert a credit card into a secure Token which can be charged in a PCI friendly way.",
"main": "dist/securesubmit.min.js",
"directories": {
"test": "test"
},
"scripts": {
"prebuild": "npm run clean && npm run test:lint && node bin/update-version.js",
"build": "npm run build:browser && npm run build:assets && npm run build:minify-assets",
"build:assets": "cp src/assets/* dist && node bin/replace-securesubmit-ref.js",
"build:browser": "rollup -c config/rollup.browser.js && rollup -c config/rollup.browser.min.js",
"build:minify-assets": "html-minifier -c config/html-minifier.json --input-dir dist --output-dir dist --file-ext html",
"clean": "rimraf dist test/bundle.js test/bundle.js.map",
"install": "npm run build",
"pretest": "rollup -c config/rollup.browser.test.js",
"test": "phantomjs --web-security=false --ignore-ssl-errors=yes --ssl-protocol=tlsv12 node_modules/mocha-phantomjs-core/mocha-phantomjs-core.js test/index.html dot",
"test:lint": "tslint -t verbose -c tslint.json --exclude src/vendor/**/*.ts src/**/*.ts",
"test:jsdom": "npm run pretest && mocha test/bundle.js",
"watch": "rollup --watch -c rollup.browser.js"
},
"repository": {
"type": "git",
"url": "https://github.com/hps/heartland-tokenization.git"
},
"keywords": [
"hps",
"heartland",
"payment",
"systems",
"tokenization",
"credit",
"card"
],
"author": "Heartland Payment Systems",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/hps/heartland-tokenization/issues"
},
"homepage": "https://github.com/hps/heartland-tokenization#readme",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/jquery": "^3.3.0",
"@types/jsdom": "^11.0.4",
"@types/mocha": "^2.2.47",
"@types/node": "^9.4.0",
"chai": "^3.5.0",
"html-minifier": "^3.0.2",
"jsdom": "^9.4.2",
"mocha": "^3.0.2",
"mocha-phantomjs-core": "^1.3.1",
"phantomjs-prebuilt": "^2.1.12",
"replace-in-file": "^2.0.1",
"rimraf": "^2.5.4",
"rollup": "^0.55.0",
"rollup-plugin-multi-entry": "^2.0.2",
"rollup-plugin-typescript2": "^0.10.0",
"rollup-plugin-uglify": "^1.0.1",
"source-map-support": "^0.4.2",
"tslint": "^2.5.1",
"typescript": "^2.6.2"
}
}