-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
90 lines (90 loc) · 2.42 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
85
86
87
88
89
90
{
"name": "mocha-core",
"version": "0.0.0",
"description": "next-gen Mocha's guts",
"keywords": [],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mochajs/mocha-core.git"
},
"author": {
"name": "Christopher Hiller",
"email": "[email protected]",
"url": "https://mochajs.org"
},
"bugs": {
"url": "https://github.com/mochajs/mocha-core/issues"
},
"homepage": "https://github.com/mochajs/mocha-core#readme",
"engines": {
"node": ">=0.10.0",
"npm": ">=2.0.0"
},
"files": [
"lib/",
"src/"
],
"scripts": {
"start": "p-s",
"preversion": "npm start test"
},
"dependencies": {
"async-listener": "^0.6.3",
"check-more-types": "^2.23.0",
"core-js": "^2.4.1",
"cuid": "^1.3.8",
"errorist": "^0.1.4",
"kefir": "^3.4.0",
"kefir-model": "^0.1.2",
"lodash": "^4.16.2",
"nodeify": "^1.0.0",
"rc-yaml": "^1.0.0",
"resolve-dep": "^0.5.3",
"source-map-support": "^0.4.0",
"stampit": "^2.1.1",
"zone.js": "~0.5.15"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-plugin-lodash": "^3.2.9",
"babel-preset-es2015": "^6.16.0",
"bluebird": "^3.4.6",
"chai": "^3.4.0",
"chai-as-promised": "^6.0.0",
"chai-eventemitter": "^1.1.1",
"core-js-builder": "^2.4.1",
"eslint": "^2.11.0",
"eslint-config-mocha": "0.0.0",
"eslint-config-standard": "^5.2.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^1.6.0",
"eslint-plugin-mocha-only": "0.0.3",
"eslint-plugin-no-class": "^0.1.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"globby": "^4.0.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-mocha": "^0.2.1",
"karma-mocha-clean-reporter": "0.0.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-source-map-support": "^1.1.0",
"mkdirp": "^0.5.1",
"mocha": "^3.1.0",
"nsp": "^2.3.1",
"nyc": "^8.3.0",
"p-s": "^3.0.1",
"phantomjs-prebuilt": "^2.1.7",
"rimraf": "^2.5.2",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"updtr": "^0.2.1"
},
"browser": {
"./src/ui/helpers/execution-context.cjs.js": "./src/ui/helpers/execution-context.browser.js",
"./src/plugins/resolver.cjs.js": "./src/plugins/resolver.browser.js",
"./src/options/rc.cjs.js": "./src/options/rc.browser.js"
},
"jsnext:main": "./src/index.js"
}