-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.58 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.58 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@bigcommerce/stencil-utils",
"version": "6.20.0",
"main": "src/main.js",
"license": "BSD-4-Clause",
"author": "Bigcommerce",
"description": "Utility library used by BigCommerce Stencil Framework themes",
"repository": {
"type": "git",
"url": "git://github.com/bigcommerce/stencil-utils.git"
},
"files": [
"src/",
"dist/"
],
"scripts": {
"build": "webpack --config webpack.conf.js",
"test": "jest",
"test-with-coverage": "jest --coverage --verbose",
"lint": "eslint .",
"lint--fix": "eslint . --fix",
"prepublish": "npm run build",
"release": "semantic-release"
},
"dependencies": {
"eventemitter3": "^4.0.4",
"uuid": "^9.0.0",
"whatwg-fetch": "^3.4.0"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.11.0",
"@bigcommerce-labs/bodl-events": "1.9.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^9.1.2",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.4.2",
"semantic-release": "^24.2.9",
"semantic-release-github-pullrequest-fixed": "^1.0.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"engines": {
"node": ">=20"
}
}