forked from taye/interact.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.91 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
{
"name": "@interactjs/_dev",
"version": "1.10.1",
"private": true,
"license": "MIT",
"directories": {
"bin": "./bin"
},
"scripts": {
"bootstrap": "yarn install --prefer-offline --pure-lockfile",
"start": "yarn esnext -- --serve",
"bundle": "NODE_ENV=production _bundle",
"esnext": "_add_plugin_indexes && _esnext",
"build": "yarn docs && yarn bundle && _add_plugin_indexes && _types && _esnext",
"docs": "node jsdoc/index.js",
"lint": "_lint --fail-on-error",
"test": "_test",
"test:debug": "TEST_RUNNER=nodemon TEST_RUNNER_ARGS='-x node --inspect' yarn test",
"tsc_lint_test": "_add_plugin_indexes && tsc -b -f && _lint --fail-on-error && _test",
"postinstall": "bin/_link"
},
"dependencies": {
"@babel/core": "latest",
"@babel/plugin-proposal-class-properties": "latest",
"@babel/plugin-proposal-export-default-from": "latest",
"@babel/plugin-proposal-optional-catch-binding": "latest",
"@babel/plugin-proposal-optional-chaining": "latest",
"@babel/plugin-transform-modules-commonjs": "latest",
"@babel/plugin-transform-runtime": "latest",
"@babel/preset-env": "latest",
"@babel/preset-typescript": "latest",
"@babel/register": "latest",
"@babel/runtime": "latest",
"@interactjs/_dev": "link:./",
"@types/node": "latest",
"@types/shelljs": "latest",
"@types/tape": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/eslint-plugin-tslint": "latest",
"@typescript-eslint/parser": "latest",
"babel-eslint": "latest",
"babel-plugin-istanbul": "latest",
"babelify": "latest",
"browser-pack-flat": "latest",
"browser-sync": "latest",
"browserify": "latest",
"chokidar": "latest",
"combine-source-map": "latest",
"del": "^5.1.0",
"domator": "latest",
"errorify": "latest",
"eslint": "6",
"eslint-config-standard": "latest",
"eslint-import-resolver-typescript": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-require-path-exists": "latest",
"eslint-plugin-standard": "latest",
"fs-extra": "latest",
"glob": "latest",
"husky": "latest",
"jsdoc": "github:taye/jsdoc#master",
"jsdoc-babel": "latest",
"jsdoc-stale": "github:taye/jsdoc-stale#master",
"jsdom": "latest",
"mkdirp": "latest",
"node-sass": "latest",
"nodemon": "latest",
"nyc": "latest",
"p-queue": "latest",
"promise-polyfill": "latest",
"resolve": "latest",
"semver": "latest",
"shelljs": "latest",
"tap-spec": "latest",
"tape": "4",
"temp": "latest",
"terser": "latest",
"ts-node": "latest",
"tslint": "latest",
"typescript": "latest",
"watchify": "latest",
"yargs": "latest"
},
"husky": {
"hooks": {
"pre-commit": "_lint --fail-on-error",
"pre-push": "yarn tsc_lint_test"
}
}
}