-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
76 lines (76 loc) · 2.3 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
{
"name": "@cycle/storage",
"version": "5.1.2",
"description": "A Cycle.js driver for localStorage and sessionStorage.",
"author": "Kahlil Lechelt",
"license": "MIT",
"repository": "https://github.com/cyclejs/storage/tree/master",
"contributors": [
{
"name": "Andre Staltz",
"email": "[email protected]"
},
{
"name": "Jan van Brügge",
"email": "[email protected]"
},
{
"name": "Nikhil Tilwalli",
"email": "[email protected]"
},
{
"name": "Fabiano Taioli",
"email": "[email protected]"
}
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"peerDependencies": {
"xstream": "*",
"@cycle/run": "*"
},
"devDependencies": {
"@cycle/dom": "^22.8.0",
"@types/node": "^14.14.14",
"@types/tape": "^4.2.30",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"browserify-shim": "^3.8.14",
"cp-cli": "^1.0.2",
"localstorage-memory": "^1.0.2",
"markdox": "^0.1.10",
"mkdirp": "^0.5.1",
"opener": "^1.4.3",
"prettier": "^1.5.3",
"tape": "^4.8.0",
"ts-node": "^3.3.0",
"typescript": "^4.1.3",
"xstream": "^11.0.0"
},
"engines": {
"node": ">=0.10.0"
},
"publishConfig": {
"access": "public"
},
"browserify-shim": {
"xstream": "global:xstream"
},
"scripts": {
"format": "prettier --write --single-quote --no-bracket-spacing --trailing-comma=all '{src,test}/**/*.{ts,js}'",
"build": "tsc -d",
"docs": "node ./.scripts/make-api-docs.js",
"test-node": "ts-node test/*.ts",
"test": "npm run test-node",
"test:ci": "npm run test",
"prebrowserify": "mkdirp dist",
"browserify": "browserify lib/index.js --global-transform=browserify-shim --standalone CycleStorage --exclude xstream --outfile dist/cycle-storage.js",
"minify": "node ./.scripts/minify.js dist/cycle-storage.js dist/cycle-storage.min.js",
"prebrowserify:example": "mkdirp dist/example",
"browserify:example": "browserify example/app.js -t babelify --outfile dist/example/app.js",
"example": "npm run build && npm run browserify && npm run browserify:example && cp-cli example/index.html dist/example/index.html && opener dist/example/index.html"
}
}