-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.24 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.24 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
{
"name": "request",
"version": "1.0.0",
"description": "HTTP Request module for testing APIs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -Rf ./dist",
"create_dist": "npm run clean && tsc && npm version patch ; cpx 'package.json' dist && cpx 'README.md' dist",
"create_dist_local": "npm run clean && tsc; cpx 'package.json' dist && cpx 'README.md' dist",
"test": "npm run clean && tsc ; jasmine dist/src/tests/*.spec.js --config=./jasmine.json"
},
"author": "Caleb Duckwall",
"license": "ISC",
"dependencies": {
"@types/node": "^9.6.9",
"express": "^4.16.2",
"moment": "^2.22.1",
"mysql": "^2.15.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/jasmine": "^2.8.6",
"cpx": "^1.5.0",
"dotenv": "^5.0.0",
"form-data": "^2.3.2",
"jasmine": "^3.1.0",
"jasmine-reporters": "^2.3.1",
"jasmine-spec-reporter": "^4.2.1",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.8.0",
"typescript": "^2.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheWallOfDucks/jasmine-test-runner"
}
}