forked from axsemantics/quidditch-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.14 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
{
"name": "quidditch",
"version": "3.0.0",
"description": "Quidditch Client for the Browser",
"main": "dist/quidditch.js",
"jsnext:main": "dist/quidditch.es.js",
"module": "dist/quidditch.es.js",
"scripts": {
"build:cjs": "rollup -c rollup.config.cjs.js",
"build:es": "rollup -c rollup.config.es.js",
"build:iife": "rollup -c rollup.config.iife.js",
"build": "npm run build:cjs && npm run build:es && npm run build:iife",
"test": "NODE_ENV=test npm run build:cjs && nyc mocha \"test/**/*.test.js\"",
"lint": "eslint --ext .js src",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"nyc": {
"include": [
"src/**.js"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/axsemantics/quidditch-js.git"
},
"author": "rashfael <sebastian.gepperth@ax-semantics.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/axsemantics/quidditch-js/issues"
},
"homepage": "https://github.com/axsemantics/quidditch-js#readme",
"dependencies": {
"deep-equal": "^1.0.1",
"fast-diff": "^1.1.2",
"ws": "^5.1.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-rollup": "^3.0.0",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^11.7.3",
"rollup": "^0.59.0",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-inject": "^2.0.0",
"rollup-plugin-node-builtins": "^2.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"sinon": "^5.0.7",
"sinon-chai": "^3.0.0"
}
}