forked from obniz/obniz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.92 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "obniz",
"version": "1.12.2",
"description": "obniz sdk for javascript",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=text --reporter=html mocha $NODE_DEBUG_OPTION ./test/index.js",
"buildAndtest": "npm run build && npm test",
"realtest": "mocha $NODE_DEBUG_OPTION -b ./realtest/index.js",
"local": "gulp --gulpfile ./_tools/server.js --cwd .",
"build": "npm run lint && gulp $NODE_DEBUG_OPTION --gulpfile ./_tools/server.js --cwd . build",
"version": "npm run build && git add obniz.js && git add obniz.min.js && git add obniz.node6_10.js",
"lint": "eslint --fix .",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"obniz"
],
"repository": "obniz/obniz",
"author": "yukisato <[email protected]>",
"homepage": "https://obniz.io/",
"license": "SEE LICENSE IN LICENSE.txt",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"chai": "^4.2.0",
"chai-like": "^1.1.1",
"child_process": "^1.0.2",
"chokidar": "^2.0.4",
"concat-with-sourcemaps": "^1.1.0",
"ejs": "^2.6.1",
"eslint": "^5.6.1",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-prettier": "^2.7.0",
"express": "^4.16.2",
"get-port": "^4.0.0",
"glob": "^7.1.3",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-concat": "^2.6.1",
"gulp-ejs": "^3.2.0",
"gulp-filter": "^5.1.0",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.0",
"gulp-sort": "^2.0.0",
"gulp-util": "^3.0.8",
"gulp-yaml": "^2.0.2",
"husky": "^0.14.3",
"json-loader": "^0.5.7",
"lint-staged": "^7.3.0",
"mocha": "^5.2.0",
"mocha-chrome": "^1.1.0",
"mocha-directory": "^2.3.0",
"mocha-sinon": "^2.1.0",
"ncp": "^2.0.0",
"node-notifier": "^5.2.1",
"nyc": "^12.0.2",
"path": "^0.12.7",
"prettier": "^1.14.3",
"sinon": "^6.3.5",
"svg-to-png": "^3.1.2",
"through2": "^2.0.3",
"uglifyjs-webpack-plugin": "^1.3.0",
"vinyl": "^2.2.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2",
"webpack-stream": "^5.1.1",
"yaml-loader": "^0.5.0"
},
"dependencies": {
"eventemitter3": "^3.1.0",
"js-yaml": "^3.12.0",
"node-dir": "^0.1.17",
"node-fetch": "^2.2.0",
"semver": "^5.5.1",
"tv4": "^1.3.0",
"ws": "^6.1.0"
},
"bugs": {
"url": "https://github.com/obniz/obniz/issues"
},
"private": false,
"browser": {
"ws": "./obniz/libs/webpackReplace/ws.js",
"canvas": "./obniz/libs/webpackReplace/canvas.js",
"./obniz/libs/webpackReplace/require-context.js": "./obniz/libs/webpackReplace/require-context-browser.js"
}
}