This repository has been archived by the owner on Apr 22, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·99 lines (99 loc) · 3.02 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
91
92
93
94
95
96
97
98
99
{
"name": "wr-behaviors",
"version": "1.0.0",
"main": "./lib/index.js",
"bin": "./bin/cli.js",
"license": "Apache-2.0",
"dependencies": {
"@babel/generator": "^7.6.4",
"@babel/highlight": "^7.5.0",
"@babel/parser": "^7.6.4",
"@babel/template": "^7.6.0",
"@babel/traverse": "^7.6.3",
"@babel/types": "^7.6.3",
"acorn": "^7.1.0",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.2",
"chokidar": "^3.2.1",
"commander": "^3.0.2",
"deoptigate": "^0.5.0",
"eventemitter3": "^4.0.0",
"fastify": "^2.9.0",
"fastify-graceful-shutdown": "^2.0.1",
"fastify-plugin": "^1.6.0",
"fastify-swagger": "^2.4.0",
"fastparallel": "^2.3.0",
"find-my-way": "^2.2.1",
"fs-extra": "^8.1.0",
"js-yaml": "^3.13.1",
"plur": "^3.1.1",
"prettier": "^1.18.2",
"pretty-time": "^1.1.0",
"qs": "^6.9.0",
"rollup": "^1.23.1",
"rollup-plugin-alias": "^2.0.1",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-node-resolve": "^5.2.0",
"ts-morph": "^4.2.0",
"typescript": "^3.6.4",
"uuid": "^3.3.3"
},
"scripts": {
"build-dev": "rollup -c rollup.dev.config.js",
"build-deving": "rollup -c rollup.deving.config.js",
"build-deving-warch": "rollup --watch -c rollup.deving.config.js",
"build-docs": "esdoc",
"build-prod": "rollup -c rollup.prod.config.js",
"build-watch": "rollup --watch -c rollup.dev.config.js",
"generate-runnable-behaviors": "node bin/cli-behaviors -b",
"generate-stdlib-debug": "node ./bin/cli-stdlib --debug-script",
"generate-stdlib-index": "node ./bin/cli-stdlib --gen-index",
"generate-test-helper-values": "node ./internal/generateTestHelperValues.js",
"publish-docs": "gh-pages -d docs",
"test": "ava --verbose",
"format": "prettier --write test/**/*.js lib/**/*.js internal/**/*.js api/**/*.js behaviors/**/*.js",
"updateBehaviorUpdatedDates": "node ./internal/updateBehaviorUpdatedTimes.js"
},
"devDependencies": {
"@types/cheerio": "^0.22.13",
"@types/fs-extra": "^8.0.0",
"ava": "^2.4.0",
"babel-eslint": "^10.0.3",
"chrome-remote-interface-extra": "git+https://github.com/N0taN3rd/chrome-remote-interface-extra.git#pv-1.17.0-post",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-external-webapi-plugin": "^1.0.0",
"esdoc-importpath-plugin": "^1.0.2",
"esdoc-node": "^1.0.5",
"esdoc-publish-html-plugin": "^1.1.2",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"gh-pages": "^2.1.1",
"is-ci": "^2.0.0",
"just-launch-chrome": "^1.0.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
},
"engines": {
"node": ">=11"
},
"ava": {
"verbose": true,
"files": [
"test/*.js"
],
"helpers": [
"test/helpers/**.js"
],
"sources": [
"api/**/*"
]
},
"resolutions": {
"*/**/graceful-fs": "^4.1.15",
"*/**/tslib": "^1.9.3",
"*/**/typescript": "^3.5.3"
}
}