-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.5 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
{
"name": "businessman",
"version": "3.0.0-alpha.1",
"description": "Powerful, Secure, Multi-threaded Flux Patterns.",
"main": "dist/businessman.js",
"jsnext:main": "index.js",
"scripts": {
"test": "xo && karma start config/karma.conf.js",
"pretest": "npm run build && node config/rollup.build.test.js",
"posttest": "rm dist/test-*.js",
"build": "node config/rollup.build.js",
"prebuild": "xo",
"lint": "xo --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/businessmanjs/businessman.git"
},
"author": "aggre",
"license": "MIT",
"bugs": {
"url": "https://github.com/businessmanjs/businessman/issues"
},
"homepage": "https://github.com/businessmanjs/businessman",
"devDependencies": {
"expect.js": "^0.3.1",
"karma": "^1.7.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.4",
"karma-phantomjs-launcher": "^1.0.2",
"mocha": "^3.5.3",
"rollup": "^0.37.0",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^6.0.1",
"rollup-plugin-multi-entry": "^2.0.1",
"rollup-plugin-node-resolve": "^2.0.0",
"xo": "^0.17.1"
},
"directories": {
"test": "test"
},
"xo": {
"envs": [
"worker"
],
"overrides": [
{
"files": "test/client/*.js",
"globals": [
"describe",
"it",
"expect",
"before",
"beforeEach",
"after",
"afterEach"
]
}
],
"semicolon": false
}
}