-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.7 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
{
"name": "@bigcommerce/data-store",
"version": "1.0.2",
"description": "A JavaScript library for managing application state",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "git://github.com/bigcommerce/data-store-js.git"
},
"author": "BigCommerce",
"bugs": {
"url": "https://github.com/bigcommerce/data-store-js/issues"
},
"homepage": "https://github.com/bigcommerce/data-store-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": "check-node-version --node '>=18' --npm '>=9' && 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/lodash": "^4.14.92",
"@types/shallowequal": "^1.1.5",
"lodash": "^4.17.4",
"rxjs": "^6.6.7",
"shallowequal": "^1.1.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@bigcommerce/tslint-config": "^2.0.1",
"@bigcommerce/validate-commits": "^2.0.3",
"@types/jest": "^21.1.10",
"check-node-version": "^4.2.1",
"jest": "^21.2.1",
"standard-version": "^9.5.0",
"ts-jest": "^21.2.3",
"tslint": "^5.9.1",
"typescript": "^2.7.1"
}
}