-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.55 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
{
"name": "storux",
"version": "0.11.3",
"description": "Easy and powerful state store (Flux implementation) using actions, listeners and reducers (optional).",
"keywords": [
"flux",
"redux",
"state",
"store",
"action",
"react",
"marko",
"marko.js"
],
"homepage": "https://github.com/Nicolab/storux",
"author": {
"name": "Nicolas Tallefourtane",
"url": "https://nicolab.net"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:Nicolab/storux.git"
},
"bugs": "https://github.com/Nicolab/storux/issues",
"dependencies": {
"evemit": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/register": "^7.14.5",
"@rollup/plugin-commonjs": "^20.0.0",
"mocha": "6",
"rimraf": "^3.0.2",
"typescript": "^4.3.2",
"unit.js": ">= 2.0.0 < 3.0.0",
"vite": "^2.4.3"
},
"main": "./dist/storux.umd.js",
"module": "./dist/storux.es.js",
"exports": {
".": {
"import": "./dist/storux.es.js",
"require": "./dist/storux.umd.js"
}
},
"babel": {
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
]
]
},
"scripts": {
"build": "rimraf dist && tsc && vite build && node ./postbuild.js",
"test": "./test/run.sh",
"git-dist": "git add dist && git commit dist -m \"[dist] v$npm_package_version\"",
"deploy": "yarn build && yarn git-dist && git push -u origin master && npm publish"
}
}