-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.49 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
77
{
"name": "xstream-store-resource",
"version": "0.0.0-semantically-released",
"description": "A module for making requests in xstream-store easy to build",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"changelog": "conventional-changelog --infile CHANGELOG.md --same-file --release-count 0 --preset angular",
"commit": "git-cz",
"compile": "tsc",
"predist": "rm -rf dist/ && mkdirp dist/ && npm run compile",
"dist": "browserify index.js --standalone xstream-store-resource --external xstream > dist/xstream-store-resource.js",
"postdist": "uglifyjs dist/xstream-store-resource.js -o dist/xstream-store-resource.min.js",
"lint": "tslint src/**/*.ts -t verbose -t stylish",
"watch:lint": "chokidar src/**/*.ts -c \"npm run lint\" --initial",
"semantic-release": "semantic-release",
"test": "jest --coverage",
"watch:test": "jest --watch",
"watch:test:debug": "node --inspect $(npm bin)/jest --watch",
"travis-deploy-once": "travis-deploy-once",
"report-coverage": "cat ./coverage/lcov.info | codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/fixate/xstream-store-resource.git"
},
"keywords": [
"xstream",
"xstream-store"
],
"author": "Larry Botha",
"license": "MIT",
"bugs": {
"url": "https://github.com/fixate/xstream-store-resource/issues"
},
"homepage": "https://github.com/fixate/xstream-store-resource#readme",
"devDependencies": {
"@types/jest": "^22.2.3",
"browserify": "^16.2.2",
"chokidar": "^2.0.3",
"chokidar-cli": "^1.2.0",
"codecov": "^3.0.2",
"commitizen": "^2.10.1",
"conventional-changelog": "^2.0.0",
"conventional-changelog-cli": "^2.0.0",
"cz-conventional-changelog": "^2.1.0",
"fetch-mock": "6.5.0",
"ghooks": "^2.0.4",
"jest": "^23.0.1",
"jest-fetch-mock": "1.6.5",
"prettier": "^1.13.4",
"semantic-release": "^15.7.1",
"travis-deploy-once": "^5.0.1",
"ts-jest": "^22.4.6",
"ts-node": "^6.0.5",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-eslint-rules": "^5.3.1",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.8.3",
"xstream": "^11.4.0",
"xstream-store": "^2.0.0"
},
"peerDependencies": {
"xstream": "*",
"xstream-store": "*"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-push": "npm run compile && npm run lint && npm run test"
}
},
"dependencies": {}
}