-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "@dkocsis-emarsys/bamboo-state",
"version": "5.0.0",
"description": "Bamboo State is a stand-alone state management library written for Bamboo.",
"main": "dist/index.js",
"scripts": {
"start": "webpack-dev-server --hot --mode development --port 27961",
"build": "webpack --mode production",
"test": "mocha --require @babel/register ./test/index.unit.spec.js",
"test:watch": "mocha --require @babel/register --watch ./test/index.unit.spec.js"
},
"author": "dkocsis-emarsys",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/dkocsis-emarsys/bamboo-state.git"
},
"devDependencies": {
"@babel/core": "7.13.15",
"@babel/node": "7.13.13",
"@babel/preset-env": "7.13.15",
"babel-loader": "8.2.2",
"browserslist": "4.16.4",
"chai": "4.3.4",
"clean-webpack-plugin": "3.0.0",
"core-js": "3.10.1",
"mocha": "8.3.2",
"sinon": "10.0.0",
"sinon-chai": "3.6.0",
"webpack": "5.33.2",
"webpack-cli": "4.6.0",
"webpack-dev-server": "3.11.2"
},
"dependencies": {
"camelcase-keys-recursive": "1.0.0"
}
}