-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.05 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "radixx",
"version": "0.1.3",
"description": "A simple and robust JavaScript library for managing application state based on Facebooks' Flux Architecture with a twist",
"keywords": [
"flux",
"event source",
"action stack",
"state",
"store",
"actions",
"functional",
"predictable",
"hydration"
],
"scripts": {
"lint": "jshint src tests",
"build": "./node_modules/.bin/webpack --progress --colors --env build && npm run test",
"dev": "./node_modules/.bin/webpack --progress --colors --watch --env dev",
"benchmark": "node benchmark.js",
"test": "./node_modules/karma/bin/karma start radixx.conf.js --single-run"
},
"authors": [
{
"name": "Ifeora Okechukwu",
"email": "[email protected]"
}
],
"contributors": [
"@synergixe"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/isocroft/Radixx"
},
"homepage": "https://github.com/isocroft/Radixx",
"devDependencies": {
"jshint": "^2.9.4",
"watchify": "^3.8.0",
"jasmine-core": "^2.2.0",
"karma": "^2.0.0",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^1.1.1",
"benchmark": "~1.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^0.2.1",
"eslint": "^5.0.1",
"eslint-loader": "^2.0.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.12.2",
"webpack-cli": "^3.0.8",
"yargs": "^10.0.3"
},
"dependencies": {},
"engines": {
"node": "^6.14.0 || ^8.10.0 || >= 9.10.0"
},
"main": "./dist/radixx.cjs.min.js",
"browser": "./dist/radixx.umd.js",
"module": "./src/es/index.js",
"unpkg": "./dist/radixx.min.js",
"jsdelivr": "./dist/radixx.min.js",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/isocroft/Radixx/issues"
},
"files": [
"dist/*.js",
"dist/*.js.map",
"src/*.js",
"*.md"
]
}