-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.75 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
{
"name": "@heydemo/storage",
"version": "1.0.3",
"description": "Simple, extensible, client-side key/value pair storage for winners, like you.",
"main": "dist/index.js",
"scripts": {
"prebuild": "rm -rf dist && mkdir dist",
"build": "babel src --out-dir dist",
"commit": "./node_modules/commitizen/bin/git-cz",
"start": "npm run test",
"test": "mocha tests/* -w --compilers js:babel-core/register",
"test:single": "./node_modules/istanbul/lib/cli.js cover -x *test* _mocha -- -R spec tests/tests.js --compilers js:babel-core/register",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"check-coverage": "./node_modules/istanbul/lib/cli.js check-coverage --statements 80 --branches 80 --lines 80 --functions 80",
"report-coverage": "cat ./coverage/lcov.info | codecov"
},
"author": {
"name": "John De Mott"
},
"repository": {
"type": "git",
"url": "https://github.com/heydemo/client-side-storage"
},
"license": "ISC",
"devDependencies": {
"babel": "6.5.2",
"babel-core": "6.7.4",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"chai": "3.5.0",
"chai-as-promised": "5.1.0",
"codecov.io": "0.1.6",
"commitizen": "1.0.5",
"cz-conventional-changelog": "1.1.2",
"ghooks": "0.3.2",
"istanbul": "0.4.0",
"mocha": "1.21.5",
"node-babel": "0.1.2",
"randomstring": "1.1.4",
"semantic-release": "4.3.5",
"websql": "0.4.3"
},
"dependencies": {
"localStorage": "^1.0.3",
"node-aop": "0.1.0",
"q": "^1.4.1",
"websql-promisified": "1.0.3"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm run test:single"
}
}
}