-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
69 lines (69 loc) · 2.12 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
66
67
68
69
{
"name": "@bigcommerce/request-sender",
"version": "1.2.4",
"description": "HTTP request client for browsers",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "esm/index.js",
"files": [
"lib/",
"esm/"
],
"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; rm -rf esm",
"build:cjs": "tsc --outDir lib --project tsconfig-build.json",
"build:esm": "tsc --outDir esm --project tsconfig-build.json --target es5 --module esnext",
"build": "npm run build:cjs && npm run build:esm",
"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": "^3.0.6",
"@types/query-string": "^5.1.0",
"js-cookie": "^3.0.5",
"lodash.merge": "^4.6.2",
"query-string": "^5.1.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@bigcommerce/tslint-config": "^4.1.0",
"@bigcommerce/validate-commits": "^2.2.0",
"@types/jest": "^25.2.1",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^13.13.4",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"jest": "^25.5.1",
"standard-version": "^9.5.0",
"ts-jest": "^25.4.0",
"ts-loader": "^9.4.2",
"tslint": "^5.18.0",
"typescript": "^3.7.2"
},
"peerDependencies": {
"typescript": ">=3.x"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}