forked from goatslacker/alt
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
104 lines (104 loc) · 3.22 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "alt",
"version": "0.18.6",
"description": "A flux implementation",
"main": "lib",
"jsnext:main": "src",
"dependencies": {
"flux": "^4.0.3",
"is-promise": "^4.0.0",
"transmitter": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.16.5",
"@babel/node": "^7.16.5",
"@babel/plugin-external-helpers": "^7.16.5",
"@babel/plugin-transform-classes": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@babel/preset-stage-0": "^7.8.3",
"alt-search-docs": "^1.0.6",
"babel-loader": "^8.2.3",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-preset-airbnb": "^5.0.0",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"es6-promise": "^4.2.8",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"ghooks": "^2.0.4",
"immutable": "^4.0.0",
"iso": "^5.2.0",
"istanbul": "^0.4.5",
"jsdom": "^19.0.0",
"lunr": "^2.3.9",
"mocha": "^9.1.3",
"object-assign": "^4.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"sinon": "^12.0.1",
"style-loader": "^3.3.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"repository": {
"type": "git",
"url": "https://github.com/goatslacker/alt.git"
},
"authors": [
"Josh Perez <[email protected]>",
"Jonathan Lehman <[email protected]>"
],
"license": "MIT",
"scripts": {
"build": "yarn run clean && yarn run transpile && yarn run build-alt-browser",
"build-alt-browser": "webpack --config dist.config.js && cross-env NODE_ENV=production webpack --config dist.min.config.js",
"clean": "rimraf lib",
"coverage": "yarn run transpile-cover && babel-node node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -u exports -R tap --require test/babel test",
"lint": "eslint src",
"postversion": "git push && git push --tags",
"prepublish": "yarn run lint && yarn run build",
"pretest": "yarn run clean && yarn run transpile",
"preversion": "yarn run clean && yarn run lint",
"release": "yarn run build && mversion patch -m",
"size": "yarn run transpile; browserify flux.js > flux-build.js; uglifyjs -m -c 'comparisons=false,keep_fargs=true,unsafe=true,unsafe_comps=true,warnings=false' flux-build.js > flux-build.min.js",
"test": "yarn run test-node",
"test-node": "babel-node node_modules/.bin/_mocha -u exports -R nyan test",
"transpile": "babel src --out-dir lib",
"transpile-cover": "babel src --out-dir lib --plugins @babel/plugin-external-helpers",
"version": "yarn run build"
},
"files": [
"src",
"lib",
"scripts",
"typings",
"dist",
"docs",
"guides",
"README.md"
],
"keywords": [
"alt",
"es6",
"flow",
"flux",
"react",
"unidirectional"
],
"config": {
"ghooks": {
"pre-push": "yarn run lint"
}
}
}