-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.33 KB
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
{
"name": "funky-store",
"version": "0.1.1",
"description": "extremely lightweight FSA-based functional store, for managing application or module state with action-triggered reducers, effects and triggers",
"main": "dist/index.min.js",
"typings": "dist/index.d.ts",
"scripts": {
"predist": "mkdirp dist && rimraf dist/*",
"dist": "tsc -p src --outDir dist --sourceMap",
"format": "prettier-standard \"{bin,example,src,spec}/**/*.[jt]@(s|sx)\"",
"postdist": "npm run uglify",
"preexample": "rimraf example/index.js",
"example": "npm run example:bundle && npm run example:serve",
"example:bundle": "browserify example/index.ts -p [tsify -p example] -g uglifyify -p bundle-collapser/plugin -p [ common-shakeify -v ] --debug | terser -c -m toplevel -o example/index.js --source-map \"content=inline\"",
"example:debug": "concurrently \"npm run example:debug:bundle\" \"npm run example:serve\"",
"example:debug:bundle": "watchify example/index.ts -p [tsify -p example] -o example/index.js --debug -v",
"example:serve": "live-server --port=6510 --entry-file=index.html --ignore=*.ts,tsconfig.json example",
"prepublish": "npm run dist",
"pretest": "npm run dist",
"test": "tape spec/**/*.spec.js",
"test:web:serve": "live-server --port=6510 --entry-file=index.html spec",
"pretest:web": "rimraf spec/index.js && npm run pretest",
"test:web": "browserify spec/lib/browser.js -g uglifyify -p bundle-collapser/plugin -p [ common-shakeify -v ] | terser -c -m toplevel -o spec/index.js && npm run test:web:serve",
"uglify": "npm run uglify:index && npm run uglify:utils",
"uglify:index": "terser dist/index.js -c -m toplevel -o dist/index.min.js --source-map \"content=dist/index.js.map\"",
"uglify:utils": "terser dist/utils.js -c -m toplevel -o dist/utils.min.js --source-map \"content=dist/utils.js.map\""
},
"keywords": [
"action",
"effect",
"event",
"functional",
"reactive",
"reducer",
"state"
],
"author": {
"name": "Stephane M. Catala",
"email": "stephane@zenyway.com"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/zenyway/funky-store.git"
},
"bugs": {
"url": "https://github.com/zenyway/funky-store/issues"
},
"homepage": "https://github.com/zenyway/funky-store#readme",
"devDependencies": {
"@types/es6-promise": "3.3.0",
"@typescript-eslint/eslint-plugin": "3.6.1",
"@typescript-eslint/parser": "3.6.1",
"basic-cursors": "3.0.0",
"basic-fsa-factories": "2.0.0",
"browserify": "16.5.1",
"bundle-collapser": "1.4.0",
"common-shakeify": "0.6.2",
"concurrently": "5.2.0",
"husky": "4.2.5",
"lint-staged": "10.2.11",
"live-server": "1.2.1",
"prettier-standard": "16.4.1",
"rimraf": "3.0.2",
"tape": "5.0.1",
"terser": "4.8.0",
"tsify": "4.0.2",
"typescript": "3.9.7",
"uglifyify": "5.0.2",
"watchify": "3.11.1",
"xterm": "4.8.1"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier-standard",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
]
}
}