forked from micnic/simples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.35 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
{
"name": "simples",
"version": "0.9.0-alpha-5",
"description": "Simple Web Framework",
"keywords": [
"client",
"cors",
"framework",
"http",
"https",
"rest",
"simple",
"server",
"static",
"vhost",
"web",
"websocket"
],
"homepage": "http://micnic.github.io/simpleS",
"bugs": {
"url": "https://github.com/micnic/simpleS/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Nicu Micleușanu",
"email": "[email protected]",
"url": "https://github.com/micnic"
},
"main": "index",
"repository": {
"type": "git",
"url": "https://github.com/micnic/simpleS"
},
"scripts": {
"build-umd": "umd simples -c lib/browser/index.js dist/simples.esnext.js",
"build-es5": "babel dist/simples.esnext.js -o dist/simples.js --presets=env",
"build-uglify": "uglifyjs dist/simples.js -o dist/simples.min.js",
"build-client": "npm run build-umd && npm run build-es5 && npm run build-uglify",
"test": "tap -b test/*.test.js test/*/*.test.js",
"test-cov": "npm test -- --coverage",
"test-cov-html": "npm run test-cov -- --coverage-report=html"
},
"dependencies": {
"mime.json": "1.x",
"uv": "1.x"
},
"devDependencies": {
"babel-cli": "6.x",
"babel-preset-env": "1.x",
"eslint": "5.x",
"jsinspect": "0.12.x",
"tap": "12.x",
"uglify-js": "3.x",
"umd": "3.x"
},
"engines": {
"node": ">=6.0"
}
}