forked from egoroof/browser-id3-writer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "browser-id3-writer",
"version": "2.3.1",
"description": "Browser & Node.js ID3 tag writer in pure JS",
"main": "dist/browser-id3-writer.js",
"scripts": {
"lint": "eslint -c tools/.eslintrc.js src/**/*.js",
"build": "webpack --config tools/webpack.config.js",
"test": "npm run lint && npm run build && npm run test:node && npm run test:browser",
"test:browser": "karma start tools/karma.conf.js --single-run",
"test:node": "mocha -c test/node.js",
"preversion": "npm test",
"version": "git add package.json",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/egoroof/browser-id3-writer.git"
},
"keywords": [
"browser",
"nodejs",
"writer",
"id3",
"mp3",
"audio"
],
"author": "egoroof",
"files": [
"LICENSE.md",
"README.md",
"dist"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/egoroof/browser-id3-writer/issues"
},
"homepage": "https://github.com/egoroof/browser-id3-writer#readme",
"devDependencies": {
"babel-core": "6.9.1",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.9.0",
"chai": "3.5.0",
"eslint": "2.12.0",
"karma": "0.13.22",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "1.0.1",
"karma-firefox-launcher": "1.0.0",
"karma-ie-launcher": "1.0.0",
"karma-mocha": "1.0.1",
"karma-webpack": "1.7.0",
"mocha": "2.5.3",
"webpack": "1.13.1"
},
"engines": {
"node": ">=4.0.0"
}
}