-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (79 loc) · 1.7 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
{
"name": "jsTestEsgrima",
"description": "JS Test Esgrima: JS Test Framework that supports UI in multiple monitors and machines",
"keywords": [
"testing",
"tdd",
"tests"
],
"version": "1.0.0",
"homepage": "jsTestEsgrima",
"author": {
"name": "Luís A. Bastião Silva",
"email": "[email protected]",
"url": "http://www.bastiao.org"
},
"repository": {
"type": "git",
"url": "git://github.com/XXXX"
},
"bugs": {
"url": "http://github.com/XXXX"
},
"directories": {
"lib": "./lib"
},
"engines": {
"node": "0.8 || 0.10 || 0.11 || >= 1.0.0"
},
"dependencies": {
"keymirror": "~0.1.0",
"object-assign": "^1.0.0",
"jquery": "^1.10.2",
"babel": "5.1.10",
"promise": "*",
"socket.io": "1.3.5",
"colors" : "*",
"express": "4.12.3",
"fsm-as-promised": "0.4.0",
"request": "*"
},
"browser": {
"jquery": "./node_modules/jquery/dist/jquery.js"
},
"devDependencies": {
"6to5ify": "^4.1.1",
"babel": "5.1.10",
"browserify": "^8.1.3",
"browserify-shim": "~3.8.2",
"envify": "^3.0.0",
"jest-cli": "~0.1.17",
"uglify-js": "~2.4.15",
"watchify": "^3.1"
},
"scripts": {
"start": "watchify -o server/lib/bundle.js -v -d common client server/lib",
"build": "NODE_ENV=production ./node_modules/browserify/bin/cmd.js . -t 6to5ify --full-path=false | uglifyjs -cm > js/bundle.min.js",
"test": "jest"
},
"browserify": {
"debug": true,
"transform": [
"6to5ify",
"browserify-shim",
"envify"
]
},
"browserify-shim": {
"bootstrap": {
"depends": [
"jquery:$"
]
}
},
"licenses": [
{
"type": "MIT"
}
]
}