forked from bigcommerce/request-sender-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.91 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
65
{
"name": "@bigcommerce/request-sender",
"version": "1.0.3",
"description": "HTTP request client for browsers",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "git://github.com/bigcommerce/request-sender-js.git"
},
"author": "BigCommerce",
"bugs": {
"url": "https://github.com/bigcommerce/request-sender-js/issues"
},
"homepage": "https://github.com/bigcommerce/request-sender-js",
"scripts": {
"prebuild": "rm -rf lib",
"build": "tsc --outDir lib --project tsconfig-build.json",
"lint": "tslint 'src/**/*.ts' --config tslint.json --project tsconfig.json && tsc --noEmit",
"prepare": "npm run build",
"prerelease": "git fetch --tags && npm run validate-commits && npm run lint && npm test",
"release": "standard-version",
"postrelease": "npm publish --access public && git push --follow-tags",
"test": "jest --config jest-config.js",
"test:coverage": "npm test -- --coverage",
"test:series": "npm test -- --runInBand",
"test:watch": "npm test -- --watch",
"validate-commits": "validate-commits"
},
"dependencies": {
"@types/js-cookie": "^2.2.6",
"@types/lodash": "^4.14.150",
"@types/query-string": "^5.1.0",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"query-string": "^5.1.1",
"tslib": "^1.11.0"
},
"devDependencies": {
"@bigcommerce/tslint-config": "^4.1.0",
"@bigcommerce/validate-commits": "^2.2.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"jest": "^25.5.1",
"standard-version": "^7.1.0",
"ts-jest": "^25.4.0",
"ts-loader": "^7.0.1",
"tslint": "^5.18.0",
"typescript": "^3.7.2"
},
"peerDependencies": {
"typescript": ">=3.x"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}