forked from brochington/staction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
54
55
56
{
"name": "staction",
"version": "5.0.1",
"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": " ./node_modules/karma/bin/karma start",
"test:travis": "./node_modules/karma/bin/karma start --single-run"
},
"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.14.0",
"lodash": "^4.17.21",
"webpack-cli": "^4.7.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"karma": "^6.3.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^5.0.0",
"mocha": "^8.4.0",
"webpack": "^5.37.1"
}
}