forked from sebdiem/vuex-cancellable-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.71 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "vuex-cancellable-actions",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"test": "jest",
"test:mem": "npm test -- --coverage --silent --logHeapUsage",
"test:watch": "jest --watch",
"test:prod": "npm run test -- --coverage --no-cache",
"test:prepublish": "npm run lint && npm run test -- --silent --no-cache",
"format": "find ./src/ -name '*.ts*' | xargs prettier --write --config ./.prettierrc --config-precedence file-override",
"remotedev": "remotedev --hostname=localhost --port=8000",
"lint": "tslint --project .",
"lint:fix": "tslint --project . --fix",
"prebuild": "rimraf dist",
"build": "tsc -p ./tsconfig-build.json",
"build:example": "webpack --config examples/users/webpack.config.js",
"serve:example": "open ./examples/users/index.html",
"prepublishOnly": "rimraf node_modules && npm i && npm run tsc && npm run test:prepublish && npm run build",
"precommit": "lint-staged",
"report-coverage": " cat ./coverage/lcov.info | coveralls",
"prepush": "npm run lint"
},
"lint-staged": {
"{src,__test__}/**/*.ts": [
"npm run format",
"npm run lint:fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/MyCryptoHQ/vuex-cancellable-actions.git"
},
"author": "MyCrypto <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MyCryptoHQ/vuex-cancellable-actions/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/MyCryptoHQ/vuex-cancellable-actions#readme",
"devDependencies": {
"@types/jest": "^22.2.0",
"@types/node": "^9.6.31",
"coveralls": "^3.0.1",
"husky": "^0.14.3",
"jest": "^22.4.2",
"lint-staged": "^7.0.0",
"prettier": "^1.10.2",
"rollup": "^0.57.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.12.0",
"ts-jest": "^22.4.1",
"ts-loader": "^4.5.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.8.0",
"typescript": "^2.8.2",
"vue": "^2.5.17",
"vue-property-decorator": "^7.0.0",
"vuex": "^3.0.1",
"vuex-typex": "^3.0.1",
"webpack": "^4.17.1",
"webpack-command": "^0.4.1"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"moduleNameMapper": {
"@src/(.*)": "<rootDir>/src/$1",
"@test/(.*)": "<rootDir>/__test__/$1"
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.ts$",
"coveragePathIgnorePatterns": [
"/node_modules/",
"test"
]
}
}