forked from rescript-association/genType
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.41 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
{
"name": "gentype",
"version": "3.44.0",
"private": true,
"description": "Use Reason values from Javascript: vanilla, or TypeScript/FlowType-annotated",
"license": "MIT",
"scripts": {
"build": "dune build",
"clean": "dune clean",
"test": "node ./scripts/run_integration_tests.js",
"install:examples": "(cd examples/typescript-react-example && npm install) & (cd examples/flow-react-example && npm install) & (cd examples/untyped-react-example && npm install) & (cd examples/commonjs-react-example && npm install)",
"build:examples": "(cd examples/typescript-react-example && npm run clean && npm run build) && (cd examples/flow-react-example && npm run clean && npm run build) & (cd examples/untyped-react-example && npm run clean && npm run build) & (cd examples/commonjs-react-example && npm run clean && npm run build)",
"dce": "dune build @check @all && node_modules/.bin/reanalyze -live-paths src/ext -dce-cmt _build",
"preversion": "npm test",
"version": "node scripts/bump_version_module.js && git add -A src/",
"postversion": "git push && git push --tags"
},
"dependencies": {},
"devDependencies": {
"debug": "^4.1.0",
"reanalyze": "^1.6.0"
},
"keywords": [
"rescript",
"tooling"
],
"author": "Cristiano Calcagno",
"bugs": {
"url": "https://github.com/cristianoc/gentype/issues"
},
"homepage": "https://github.com/cristianoc/gentype#readme"
}