-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
84 lines (84 loc) · 2.47 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "ZenzaWatch",
"description": "niconico HTML5 Player",
"version": "0.0.0",
"author": "segabito",
"bugs": {
"url": "https://github.com/segabito/ZenzaWatch/issues"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-es2015": "^7.0.0-beta.42",
"@babel/register": "^7.0.0-beta.42",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^8.0.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-power-assert": "^2.0.0",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"emitter": "0.0.5",
"eslint": "^4.19.0",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"espower-babel": "^4.0.3",
"event-emitter": "^0.3.5",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.1",
"gulp-mocha": "^2.2.0",
"intelli-espower-loader": "^1.0.1",
"jquery": "^3.3.1",
"jsdom": "^11.6.2",
"lit-html": "^1.1.0",
"lodash": "^4.17.5",
"mocha": "^3.5.3",
"mock-local-storage": "^1.0.5",
"node-notifier": "^5.4.0",
"power-assert": "^1.4.4",
"sinon": "^1.17.7",
"uglify-save-license": "^0.4.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"directories": {
"test": "test/"
},
"files": [
"README.MD",
"package.json",
"lib",
"test"
],
"homepage": "https://github.com/segabito/ZenzaWatch",
"keywords": [
"ES6",
"test"
],
"license": "MIT",
"main": "src/ZenzaWatchIndex.js",
"repository": {
"type": "git",
"url": "git://github.com/segabito/ZenzaWatch.git"
},
"scripts": {
"build": "NODE_ENV=development babel src --out-dir lib --compilers js:@babel/register --source-maps",
"watch": "NODE_ENV=development babel src --out-dir lib --compilers js:@babel/register --source-maps inline --watch",
"test": "NODE_ENV=test mocha --require ./test/setup.js test/**/unit/*.js",
"test:browser": "webpack-dev-server --inline",
"build:production": "node ./build.js",
"build:monkey": "node ./build.js --dev",
"watch:monkey": "node ./build.js --dev --watch"
}
}