forked from taye/interact.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.73 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
{
"name": "@interactjs/_dev",
"version": "1.6.1",
"private": true,
"workspaces": [
".",
"./packages/*"
],
"bin": {
"@build": "scripts/build.js",
"@docs": "jsdoc/index.js",
"@lint": "scripts/lint.js",
"@run_test": "scripts/test.sh",
"@version": "scripts/version.js"
},
"scripts": {
"bootstrap": "npx yarn install",
"start": "cd packages/interactjs; NODE_ENV=development ../../scripts/build.js --watch",
"build": "cd packages/interactjs; NODE_ENV=production ../../scripts/build.js --docs",
"lint": "scripts/lint.js --fail-on-error",
"test": "scripts/test.sh",
"test:debug": "TEST_RUNNER=nodemon TEST_RUNNER_ARGS='-x node --inspect' npm run test",
"tsc_lint_test": "tsc -b -f && tsc -b --clean && npm run lint -- --fail-on-error && npm test",
"docs": "node jsdoc/index.js",
"release": "sh ./scripts/release.sh",
"version": "scripts/version.js"
},
"dependencies": {
"@babel/core": "latest",
"@babel/plugin-proposal-class-properties": "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",
"@types/node": "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",
"babel-plugin-transform-es2015-modules-commonjs": "latest",
"babelify": "latest",
"browser-pack-flat": "latest",
"browserify": "latest",
"combine-source-map": "latest",
"common-shakeify": "latest",
"domator": "latest",
"envify": "latest",
"errorify": "latest",
"eslint": "latest",
"eslint-config-standard": "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",
"lerna": "latest",
"mkdirp": "latest",
"nyc": "latest",
"semver": "latest",
"tap-spec": "latest",
"tape": "latest",
"ts-node": "8.0.2",
"tslint": "latest",
"typescript": "latest",
"uglify-js": "latest",
"watchify": "latest",
"yargs": "latest",
"yarn": "latest"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint -- --fail-on-error",
"pre-push": "npm run tsc_lint_test"
}
}
}