-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.56 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
{
"name": "smpte.js",
"version": "1.1.0",
"main": "dist/index.js",
"scripts": {
"webpack:base": "node_modules/webpack/bin/webpack.js --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"dev:base": "cross-env NODE_ENV=development yarn webpack:base",
"dev": "yarn dev:base --progress",
"watch": "yarn dev --watch",
"prod": "cross-env NODE_ENV=production yarn webpack:base",
"lint": "eslint --ext js .",
"lint:fix": "yarn lint --fix",
"prepublishOnly": "yarn test && yarn prod",
"test:base": "mocha --require @babel/register",
"test": "yarn test:base \"test/**/*.js\"",
"test:bail": "yarn test --bail",
"coverage": "nyc --reporter lcovonly mocha --require @babel/register \"test/**/*.js\" && codecov",
"build": "yarn prod",
"start": "serve"
},
"author": "Firework Web & Mobile",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fireworkweb/smpte.js.git"
},
"bugs": {
"url": "https://github.com/fireworkweb/smpte.js/issues"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"@fireworkweb/eslint-config": "^1.0.0",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"laravel-mix": "^5.0.4",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {}
}