-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
79 lines (79 loc) · 2.47 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
{
"name": "js-coroutines",
"sideEffects": [
"./dist/polyfill.js"
],
"version": "2.4.36",
"private": false,
"files": [
"dist",
"README.md",
"LICENCE.txt"
],
"repository": "https://github.com/miketalbot/js-coroutines",
"main": "dist/index.js",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.14",
"@pixi/jsdoc-template": "^2.6.0",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.1",
"babel-plugin-minify-mangle-names": "^0.5.0",
"babel-preset-minify": "^0.5.1",
"chai": "^4.3.4",
"docdash": "^1.2.0",
"dts-generator": "^3.0.0",
"express": "^4.17.1",
"jsdoc": "^3.6.6",
"lodash": "^4.17.21",
"mocha": "^8.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3",
"showdown": "^1.9.1",
"tern": "^0.24.3",
"tsd-jsdoc": "^2.5.0",
"typescript": "^4.2.3",
"versiony-cli": "^1.3.0"
},
"scripts": {
"start": "PORT=3012 react-scripts start",
"dts": "node ./build-dts.js",
"document": "rm -rf ./docs && jsdoc -c ./doc.conf.json && cp -r ./docs ../js-coroutines-web/public",
"tsd": "jsdoc -t node_modules/tsd-jsdoc/dist -r ./src/component",
"build": "source ./scripts/build.sh",
"push": "node ./node_modules/versiony-cli/bin/cli.js ./package.json --patch && npm run build && npm publish && git add . && git commit -am build && git push",
"watch": "NODE_ENV=production babel src/component --watch --ignore \"__tests__\",\"**/*.spec.js\",\"**/*.test.js\",\"__snapshots__\" --out-dir dist",
"test": "mocha --require @babel/register src/test/**/*.test.js --exit",
"eject": "react-scripts eject",
"test-express": "npm run build && node ./src/test/basic-express.js"
},
"eslintConfig": {
"extends": "react-app"
},
"types": "dist/es6/jscoroutines.d.ts",
"typings": "dist/es6/jscoroutines.d.ts",
"browserslist": {
"production": [
">0.2%",
"not dead",
"IE 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"peerDependencies": {
"@babel/runtime": ">=7.4.8"
}
}