forked from localForage/localForage-sessionStorageWrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.34 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
{
"name": "localforage-sessionstoragewrapper",
"version": "1.3.1",
"description": "A sessionStorage driver for localForage.",
"homepage": "https://github.com/thgreasi/localForage-sessionStorageWrapper",
"main": "dist/localforage-sessionstoragewrapper.js",
"jsnext:main": "dist/localforage-sessionstoragewrapper.es6.js",
"typings": "typings/index.d.ts",
"files": [
"dist",
"lib",
"typings"
],
"scripts": {
"clean": "rimraf build && rimraf dist",
"lint": "tslint -t stylish -c tslint.json '{lib,test,test-e2e}/**/*.ts' 'karma.conf.ts'",
"lint-fix": "tslint --fix -t stylish -c tslint.json '{lib,test,test-e2e}/**/*.ts' 'karma.conf.ts'",
"prebuild": "npm run prettify && npm run lint-fix",
"prettify": "prettier --write \"lib/**/*.ts\" \"test/**/*.ts\" \"test-e2e/**/*.ts\" \"karma.conf.ts\"",
"build:umd": "rollup -c rollup.config.umd.js",
"build:es6": "rollup -c rollup.config.es6.js",
"build:unit": "rollup -c rollup.config.test.js",
"build": "npm run clean && npm run build:umd && npm run build:es6",
"test:e2e": "karma start",
"test:typings": "node_modules/.bin/tsc --project typing-tests",
"test:all": "npm run test:e2e && npm run test:typings",
"test": "npm run build && npm run test:all",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "git://github.com/thgreasi/localForage-sessionStorageWrapper.git"
},
"keywords": [
"localforage",
"sessionstorage"
],
"author": "Thodoris Greasidis",
"licence": "Apache-2.0",
"bugs": {
"url": "http://github.com/thgreasi/localForage-sessionStorageWrapper/issues"
},
"devDependencies": {
"@resin.io/types-mochainon": "^2.0.1",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.0",
"husky": "^4.2.5",
"karma": "^3.0.0",
"lint-staged": "^10.1.7",
"localforage": "^1.5.0",
"mocha": "^3.5.3",
"mochainon": "^2.0.0",
"prettier": "^1.11.1",
"resin-config-karma": "^2.0.0",
"rimraf": "^2.6.2",
"rollup": "^0.57.1",
"rollup-plugin-multi-entry": "^2.0.2",
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-typescript2": "^0.12.0",
"source-map-support": "^0.4.15",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-no-unused-expression-chai": "^0.1.3",
"typescript": "^2.7.2"
},
"peerDependencies": {
"localforage": "^1.5.0"
}
}