-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"contributors": [
"Matt Aho <[email protected]>",
"Geoffrey Hankerson <[email protected]>"
],
"description": "Javascript library for APM html5 audio players",
"files": [
"dist/**/*"
],
"homepage": "https://github.com/APMG/apm-html5-player",
"license": "MIT",
"main": "dist/bundle.js",
"name": "apm-html5-player",
"private": false,
"repository": {
"type": "git",
"url": "[email protected]:js-libraries/apm-html5-player.git"
},
"scripts": {
"build": "rollup -c --environment PRODUCTION",
"dev": "rollup -c",
"eslint": "eslint .",
"lint": "npm run prettier && npm run eslint",
"prettier": "prettier --check src/**/*.js",
"prettier:fix": "prettier --write src/**/*.js",
"test": "jest",
"test:watch": "jest --watch"
},
"title": "APM HTML5 Player",
"version": "1.1.2",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-jest": "^24.7.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"jest": "^29.3.1",
"prettier": "^1.17.0",
"rollup": "^1.10.1",
"rollup-plugin-cleanup": "^3.1.1"
}
}