This repository has been archived by the owner on Jul 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.55 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
{
"name": "@bigtest/interactor",
"description": "Interaction library for testing big",
"version": "0.9.3",
"license": "MIT",
"repository": "https://github.com/bigtestjs/interactor",
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
"files": [
"dist",
"docs",
"src"
],
"scripts": {
"build": "rollup --config",
"docs": "bigtest-docs",
"lint": "eslint --ignore-path .gitignore ./",
"start": "bigtest run --opts tests/bigtest.opts",
"test": "yarn start --once",
"prepack": "npm run docs && npm run build"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@bigtest/cli": "^0.2.2",
"@bigtest/meta": "bigtestjs/meta",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "~6.5.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mocha": "~6.2.2",
"rollup": "^0.60.0",
"rollup-plugin-babel": "^4.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"webpack": "^4.20.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"@bigtest/convergence": "^1.1.1"
}
}