-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.46 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "zoundcloud",
"version": "1.4.4",
"description": "Adds download buttons to SoundCloud pages.",
"private": true,
"author": "xtangle <jackyxu07@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/xtangle/zoundcloud#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xtangle/zoundcloud.git"
},
"bugs": {
"url": "https://github.com/xtangle/zoundcloud/issues"
},
"main": "index.js",
"engines": {
"node": ">=7.6"
},
"scripts": {
"build": "webpack --config webpack.dev.js",
"build:prod": "webpack --config webpack.prod.js",
"build:watch": "yarn run build --watch",
"commit": "git-cz -a",
"coveralls": "cat coverage/HeadlessChrome/lcovonly | coveralls",
"deploy": "./scripts/deploy.sh",
"e2e": "nightwatch --suiteRetries 3",
"e2e:ci": "xvfb-run --auto-servernum --server-num=1 nightwatch --suiteRetries 3",
"lint": "run-p lint:js lint:ts",
"lint:js": "eslint .",
"lint:ts": "tslint -p .",
"release": "./scripts/release.sh",
"release:local": "release-it --verbose",
"test": "karma start karma.conf.js",
"test:coverage": "karma start karma.conf.js --reporters mocha,karma-typescript",
"test:watch": "karma start karma.conf.js --single-run false --mochaReporter.output autowatch"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn lint:js --fix",
"git add"
],
"*.ts": [
"yarn lint:ts --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@types/chrome": "^0.0.81",
"@types/jquery": "^3.3.29",
"@types/node": "^11.13.0",
"@types/verror": "^1.10.3",
"browser-id3-writer": "^4.1.0",
"jquery": "^3.3.1",
"rxjs": "^6.4.0",
"verror": "^1.10.0"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/mocha-each": "^1.1.0",
"@types/sinon": "^7.0.11",
"@types/sinon-chai": "^3.2.2",
"@types/sinon-chrome": "^2.2.6",
"chai": "^4.2.0",
"chai-jq": "^0.0.9",
"chromedriver": "^2.46.0",
"clean-webpack-plugin": "^2.0.1",
"commitizen": "^3.0.7",
"conventional-changelog-cli": "^2.0.12",
"copy-webpack-plugin": "^5.0.2",
"coveralls": "^3.0.3",
"cz-conventional-changelog": "2.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"husky": "^1.3.1",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^4.0.0",
"lint-staged": ">=8",
"mocha": "^6.0.2",
"mocha-each": "^1.2.0",
"nightwatch": "^1.0.19",
"npm-run-all": "^4.1.5",
"release-it": "^10.4.0",
"rimraf": "^2.6.3",
"sinon": "^7.3.1",
"sinon-chai": "^3.3.0",
"sinon-chrome": "^3.0.1",
"terser-webpack-plugin": "^1.2.3",
"ts-loader": "^5.3.3",
"tslint": "^5.15.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.1.0",
"typescript": "^3.4.1",
"webpack": "^4.29.6",
"webpack-chrome-extension-reloader": "^1.3.0",
"webpack-cli": "^3.3.0",
"webpack-merge": "^4.2.1",
"yargs-parser": "^13.0.0"
}
}