-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "recurly-js-mock",
"version": "0.1.4",
"description": "A tiny service returning Recurly.js tokens for automated test scenarios.",
"private": false,
"license": "Apache-2.0",
"author": {
"name": "Sebastian Haas <sebastian@tapkey.com> (https://www.tapkey.com)"
},
"scripts": {
"lint": "tslint -c tslint.json '*.ts'",
"build": "npm run lint && npm run tsc",
"postbuild": "copyfiles recurlyJsMock.html build",
"test": "echo \"No tests specified yet.\" && exit 0",
"tsc": "tsc"
},
"bin": "./build/recurlyJsMockCLI.js",
"main": "./build/recurlyJsMock.js",
"types": "./build/recurlyJsMock.d.ts",
"dependencies": {
"@types/commander": "^2.9.1",
"@types/deepmerge": "^1.3.1",
"@types/file-url": "^2.0.0",
"@types/node": "^8.0.1",
"commander": "^2.11.0",
"deepmerge": "^2.0.0",
"file-url": "^2.0.2",
"phantom": "^4.0.4",
"request": "^2.81.0"
},
"devDependencies": {
"copyfiles": "^1.2.0",
"tslint": "^5.4.3",
"typescript": "^2.3.4"
},
"engines": {
"node": ">=6.11.1",
"npm": ">=5.1.0"
}
}