forked from aadsm/jsmediatags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "jsmediatags",
"version": "3.0.5",
"description": "Media Tags Reader (ID3, MP4)",
"author": {
"name": "António Afonso",
"email": "[email protected]"
},
"contributors": [
{
"name": "Jacob Seidelin"
},
{
"name": "Joshua Kifer"
},
{
"name": "Jesse Ditson",
"email": "[email protected]"
}
],
"main": "build2/jsmediatags.js",
"repository": {
"type": "git",
"url": "git+https://github.com/aadsm/jsmediatags.git"
},
"keywords": [
"ID3",
"tags",
"mp3",
"audio",
"mp4"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/aadsm/jsmediatags/issues"
},
"homepage": "https://github.com/aadsm/jsmediatags#readme",
"dependencies": {
"xhr2": "~0.1.3"
},
"devDependencies": {
"babel-plugin-transform-flow-strip-types": "~6.1.18",
"babel-plugin-transform-es2015-modules-commonjs": "~6.1.18",
"babel-plugin-transform-es2015-classes": "~6.1.18",
"babel-plugin-transform-es2015-block-scoping": "~6.1.18",
"babel-plugin-transform-class-properties": "~6.2.2",
"babel-jest": "~6.0.1",
"babel-core": "~6.2.1",
"babel-cli": "~6.2.0",
"jest-cli": "~0.7.1",
"browserify": "~12.0.1",
"watchify": "~3.6.1",
"babelify": "~7.2.0",
"google-closure-compiler": "20151015.0.0"
},
"scripts": {
"test": "jest",
"build": "babel src --ignore __tests__,__mocks,FlowTypes.js --out-dir build2",
"watch": "babel --ignore __tests__,__mocks,FlowTypes.js --watch src --out-dir build2",
"dist-dev": "mkdir -p dist && browserify src/jsmediatags.js --detect-globals false -i ./src/NodeFileReader.js -o dist/jsmediatags.js -s jsmediatags -t [ babelify --plugins [ transform-flow-strip-types transform-es2015-modules-commonjs transform-class-properties transform-es2015-classes transform-es2015-block-scoping ] ]",
"dist-watch": "mkdir -p dist && watchify src/jsmediatags.js -v --detect-globals false -i ./src/NodeFileReader.js -o dist/jsmediatags.js -s jsmediatags -t [ babelify --plugins [ transform-flow-strip-types transform-es2015-modules-commonjs transform-class-properties transform-es2015-classes transform-es2015-block-scoping ] ]",
"dist": "npm run dist-dev && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level QUIET --compilation_level SIMPLE_OPTIMIZATIONS --js dist/jsmediatags.js > dist/jsmediatags.min.js"
},
"jest": {
"rootDir": "./src",
"scriptPreprocessor": "../node_modules/babel-jest"
},
"engines": {
"node": ">=4.0.0"
}
}