This repository was archived by the owner on Nov 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.16 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.16 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
{
"name": "@enplug/player-sdk",
"version": "0.4.12",
"license": "MIT",
"description": "The JavaScript SDK for Enplug Player Apps",
"main": "index.js",
"jsnext:main": "src/enplug.js",
"engines": {
"node": ">=6.1.0",
"npm": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Enplug/js-player-sdk"
},
"keywords": [
"enplug"
],
"config": {
"bundle_output_name": "enplug-player-sdk.bundle.js",
"bundle_tests_output_name": "enplug-player-sdk-tests.bundle.js"
},
"scripts": {
"lint": "eslint .",
"clean": "rimraf 'dist' && mkdirp dist",
"precompile": "npm run clean",
"bundle": "browserify src/api.js -o dist/enplug-player-sdk.bundle.js -t [ babelify ] -s enplug",
"es5": "babel src --plugins transform-runtime --out-dir dist/es5",
"compile": "npm-run-all -s bundle es5",
"watch:bundle": "watchify src/api.js -o dist/enplug-player-sdk.bundle.js -t [ babelify ] -s enplug",
"watch:es5": "babel src --watch --plugins transform-runtime --out-dir dist/es5",
"watch": "npm-run-all -p watch:bundle watch:es5",
"test": "tape -r babel-register 'tests/**/*.js' | tap-spec",
"test:bundle": "globify 'tests/**/*.js' -o dist/enplug-player-sdk-tests.bundle.js -t [ babelify ]",
"tdd": "nodemon -q -d 200 -i dist -w src -w tests -x 'npm test'",
"dev": "npm-run-all compile -p watch tdd -c",
"prerelease": "npm run compile",
"release": "npm run prerelease && npm publish"
},
"dependencies": {
"babel-plugin-transform-runtime": "^6.9.0"
},
"devDependencies": {
"@enplug/babel-preset": "^1.0.1",
"@enplug/eslint-config": "^1.0.0",
"babel-cli": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-istanbul": "^0.8.0",
"babel-register": "^6.7.2",
"babelify": "^7.3.0",
"browserify": "^13.0.0",
"eslint": "^3.12.2",
"eslint-loader": "^1.6.1",
"globify": "^1.2.1",
"nodemon": "^1.9.2",
"npm-run-all": "^1.8.0",
"rimraf": "^2.5.2",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"watchify": "^3.7.0"
},
"eslintConfig": {
"extends": "@enplug/eslint-config"
},
"babel": {
"presets": [
"@enplug/babel-preset"
]
}
}