-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 735 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 735 Bytes
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
{
"name": "cycle-storageify",
"version": "4.0.1",
"description": "Augments your Cycle.js component (main function) by storing its onion-shaped state in local storage",
"author": "Michael Maier",
"license": "MIT",
"main": "lib/cjs/index.js",
"module": "lib/es6/index.js",
"typings": "lib/cjs/index.d.ts",
"scripts": {
"pretest": "npm run lib",
"prelib": "mkdir -p lib",
"lib": "npm run lib:cjs && npm run lib:es6",
"lib:cjs": "tsc --module commonjs --outDir ./lib/cjs",
"lib:es6": "tsc --module es6 --outDir ./lib/es6",
"prepublish": "npm run lib"
},
"peerDependencies": {
"xstream": "10.x || 11.x"
},
"devDependencies": {
"typescript": "^2.3.2",
"xstream": "^11.1.0"
}
}