-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.42 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
{
"name": "staction",
"version": "5.2.0",
"description": "A straightforward method of managing state, with support for Promises, Generators, and Async/Await.",
"main": "build/bundle.js",
"files": [
"build/bundle.js",
"build/bundle.js.map",
"build/esm-bundle.js",
"build/esm-bundle.js.map",
"src/Staction.d.ts"
],
"scripts": {
"rmrf": "rm -rf ./node_modules",
"clean": "rm -rf ./build",
"setup": "npm cache clear && npm run rmrf && npm install",
"build": "npm run clean && webpack --config webpack.config.js",
"test": "jest"
},
"types": "./src/Staction.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/brochington/staction.git"
},
"author": "Broch Stilley",
"license": "MIT",
"bugs": {
"url": "https://github.com/brochington/staction/issues"
},
"homepage": "https://github.com/brochington/staction#readme",
"dependencies": {
"@babel/runtime": "^7.24.5",
"lodash": "^4.17.21",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.14.2",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@jest/globals": "^29.7.0",
"@types/lodash": "^4.17.1",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"jest": "^29.7.0",
"webpack": "^5.91.0"
}
}