-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "yttrium-server",
"version": "1.0.2",
"description": "The jQuery web server framework",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint .",
"test": "mocha",
"coveralls": "nyc -a npm test && nyc report --reporter=text-lcov | coveralls",
"compile": "babel --presets es2015 -d lib/ src/",
"prepare": "npm test && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YttriumJS/yttrium-server.git"
},
"keywords": [
"framework",
"jquery",
"backend",
"server",
"yttrium"
],
"author": "YttriumJS",
"license": "MIT",
"bugs": {
"url": "https://github.com/YttriumJS/yttrium-server/issues"
},
"homepage": "https://github.com/YttriumJS/yttrium-server#readme",
"dependencies": {
"domino": "^2.0.0",
"jquery": "^3.3.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"eslint": "^5.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.17.0",
"mocha": "^6.0.0",
"nyc": "^14.0.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0"
},
"nyc": {
"exclude": [
"example",
"lib",
"**/*.spec.js"
]
}
}