-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.41 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
{
"name": "localforage-typescript-plugin-boilerplate",
"version": "1.0.0",
"description": "A simple typescript plugin boilerplate for localForage.",
"homepage": "https://github.com/localForage-extensions/localForage-typescript-plugin-boilerplate",
"main": "dist/localforage-typescript-plugin-boilerplate.js",
"jsnext:main": "dist/localforage-typescript-plugin-boilerplate.es6.js",
"typings": "dist/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:unit": "npm run build:unit && mocha build/tests-unit/test-bundle.js",
"test:e2e": "karma start",
"test:all": "npm run test:unit && npm run test:e2e",
"test": "npm run build && npm run test:all",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "git://github.com/localForage-extensions/localForage-typescript-plugin-boilerplate.git"
},
"keywords": [
"localforage",
"plugin"
],
"author": "Thodoris Greasidis",
"licence": "Apache-2.0",
"bugs": {
"url": "http://github.com/localForage-extensions/localForage-typescript-plugin-boilerplate/issues"
},
"devDependencies": {
"@resin.io/types-mochainon": "^2.0.1",
"@types/mocha": "^5.2.7",
"@types/node": "^9.6.55",
"husky": "^4.2.5",
"karma": "^3.0.0",
"lint-staged": "^10.1.7",
"mocha": "^3.5.3",
"mochainon": "^2.0.0",
"prettier": "^1.19.1",
"resin-config-karma": "^2.0.0",
"rimraf": "^2.7.1",
"rollup": "^0.57.1",
"rollup-plugin-multi-entry": "^2.1.0",
"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.20.1",
"tslint-no-unused-expression-chai": "^0.1.3",
"typescript": "^2.7.2"
},
"dependencies": {
"localforage": "^1.5.0"
}
}