-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
95 lines (95 loc) · 3.05 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
{
"name": "kite.js",
"description": "kite client for browser",
"main": "lib/index.js",
"browser": {
"ws": "./lib/ws-browser.js",
"os": "./lib/os-browser.js",
"./lib/server": "./lib/server-browser.js"
},
"version": "1.0.13",
"scripts": {
"clean": "rm -rf ./lib",
"test": "mocha --reporter spec --compilers js:babel-core/register 'src/**/*.test.js'",
"test:watch": "npm test -- --watch",
"test:single": "mocha --reporter spec --compilers js:babel-core/register",
"test:single:watch": "mocha --watch --reporter spec --compilers js:babel-core/register",
"prebundle": "npm run build",
"bundle": "BABEL_ENV=browser browserify -t babelify lib/bundle.js -o dist/bundle.js",
"postbundle": "uglifyjs -o dist/bundle.min.js -c -m -- dist/bundle.js",
"lint": "eslint .",
"prebuild": "npm run clean",
"build": "babel src --source-maps --out-dir lib",
"build:watch": "babel src --watch --source-maps --out-dir lib",
"prepublish": "npm run format:all && npm run test && npm run bundle",
"format:single": "prettier --single-quote --trailing-comma es5 --no-semi --write",
"format:all": "prettier --single-quote --trailing-comma es5 --no-semi --write 'src/**/*.js'",
"format:check:single": "prettier --single-quote --trailing-comma es5 --no-semi --list-different",
"format:check:all": "prettier --single-quote --trailing-comma es5 --no-semi --list-different 'src/**/*.js'"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babelify": "^7.3.0",
"browserify": "latest",
"eslint": "3.19.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-react": "7.0.1",
"eslint-plugin-standard": "3.0.1",
"expect": "^1.20.2",
"flow-bin": "^0.55.0",
"mocha": "^3.4.2",
"prettier": "^1.3.1",
"uglify-es": "^3.0.23"
},
"directories": {
"test": "test"
},
"dependencies": {
"atob": "^2.0.3",
"bluebird": "^3.5.0",
"dnode-protocol": "^0.2.2",
"jwt-simple": "^0.5.1",
"sockjs": "^0.3.18",
"sockjs-client": "^1.1.4",
"stream-to-array": "^2.3.0",
"try-json-parse": "^0.1.1",
"uuid": "^3.0.1",
"ws": "^3.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/koding/kite.js.git"
},
"keywords": [
"kite",
"dnode",
"rpc"
],
"author": "Koding Developers <[email protected]>",
"maintainers": [
{
"name": "Gokmen Goksel",
"email": "[email protected]",
"url": "https://github.com/gokmen"
},
{
"name": "Umut Sirin",
"email": "[email protected]",
"url": "https://github.com/usirin"
}
],
"bugs": {
"url": "https://github.com/koding/kite.js/issues"
},
"homepage": "https://github.com/koding/kite.js#readme"
}