-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.38 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
{
"name": "@topl/stable",
"version": "0.5.24",
"description": "yet another test framework",
"main": "cli.js",
"author": "Lil Thorny <[email protected]>",
"license": "MIT",
"private": false,
"repository": "git+https://github.com/humanchimp/stable.git",
"scripts": {
"build": "rollup -c ./rollup.config.js",
"build:framework": "rollup -c ./rollup.framework.config.js",
"build:runner:remote": "rollup -c rollup.runner-remote.config.js",
"test": "./cli.js",
"cover": "nyc --reporter=lcov node ./cli.js --runner=isolate",
"lint": "eslint src spec --ext=.ts",
"prepublishOnly": "yarn build && yarn build:framework && yarn build:runner:remote"
},
"types": "",
"dependencies": {
"@babel/core": "^7.2.0",
"@babel/generator": "^7.2.2",
"@babel/plugin-proposal-async-generator-functions": "^7.2.0",
"@babel/plugin-syntax-async-generators": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/traverse": "^7.2.3",
"@babel/types": "^7.2.2",
"@topl/stable-plugin-fixture": "^0.5.0",
"@topl/stable-plugin-timing": "^0.5.0",
"@types/chai": "^4.1.7",
"@types/sinon": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^1.3.0",
"@typescript-eslint/parser": "^1.3.0",
"babel-plugin-istanbul": "^5.1.0",
"chai": "^4.2.0",
"chalk": "^2.4.1",
"cli-highlight": "^2.0.0",
"eslint": "^5.14.0",
"eslint-plugin-prettier": "^3.0.1",
"express": "^4.16.4",
"fast-deep-equal": "^2.0.1",
"fast-glob": "^2.2.4",
"fs-extra": "^8.0.0",
"js-yaml": "^3.12.1",
"jsdom": "^15.0.0",
"most": "^1.7.3",
"most-async-iterable": "^1.0.1",
"nyc": "^14.0.0",
"prettier": "^1.16.4",
"rollup": "^1.6.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-typescript": "^1.0.0",
"rollup-plugin-virtual": "^1.0.1",
"rollup-pluginutils": "^2.4.1",
"seedrandom": "^3.0.1",
"sinon": "^7.2.2",
"sorcery": "^0.10.0",
"tmp-promise": "^2.0.1",
"tslib": "^1.9.3",
"typescript": "^3.2.2",
"ws": "^7.0.0"
},
"bin": {
"stable": "./cli.js"
},
"prettier": {
"proseWrap": "never",
"singleQuote": false,
"trailingComma": "all"
},
"nyc": {
"instrument": false,
"include": "src/**",
"extension": [
".ts",
".js"
]
}
}