-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
{
"name": "apex-api",
"version": "5.0.17",
"description": "A simple API client for use with the APEX Server",
"main": "lib/apex-api.min.js",
"scripts": {
"deploy": "npm run build && npm version patch && git commit -a -m 'updating version' && git push",
"build": "webpack --env build",
"dev": "webpack --progress --colors --watch --env dev",
"test:watch": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js",
"prettier": "prettier --write --print-width 80 --single-quote \"{src,test}/**/*.js\""
},
"dependencies": {
"rxjs": "^5.4.3",
"universal-websocket-client": "^1.0.1"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-runtime": "^6.23.0",
"chai": "3.5.0",
"chance": "^1.0.11",
"eslint": "3.19.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-problems": "^1.1.0",
"eslint-loader": "1.7.1",
"eslint-plugin-prettier": "^2.6.2",
"mocha": "^3.3.0",
"prettier": "^1.10.2",
"webpack": "3.1.0",
"yargs": "7.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/alphapoint/apex-api"
},
"files": [
"lib"
],
"license": "MIT",
"keywords": [
"Alphapoint"
],
"author": "Josh Rossi",
"publishConfig": {
"registry": "http://nexus.alphapoint.com:8087/repository/npm-private/"
}
}