-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
32 lines (32 loc) · 1.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
{
"name": "reanalyze",
"version": "2.25.1",
"private": true,
"description": "Analyzers for Dead Code/Types and termination",
"license": "MIT",
"scripts": {
"build": "dune build",
"build406": "cp src/dune src/dune.saved && cp src/dune.406 src/dune && npm run build && mv src/dune.saved src/dune || mv src/dune.saved src/dune",
"clean": "dune clean -p reanalyze",
"test": "node ./scripts/run_integration_tests.js",
"install:examples": "(cd examples/deadcode && npm install) & (cd examples/termination && npm install)",
"build:examples": "(cd examples/deadcode && npm run clean && npm run build && npm run analyze) & (cd examples/termination && npm run clean && npm run build && npm run analyze)",
"dce": "dune build && dune exec reanalyze.exe -- -suppress dead-code-ppx,src/compiler-libs-406 -unsuppress doesnotexist -dce-cmt _build",
"exception": "dune build && dune exec reanalyze.exe -- -exclude-paths src/compiler-libs-406/parser.ml -suppress src/ext,src/compiler-libs-406 -exception-cmt _build",
"preversion": "npm test",
"version": "node scripts/bump_version_module.js && git add -A src/",
"postversion": "git push && git push --tags"
},
"bin": {
"reanalyze.exe": "./_build/install/default/bin/reanalyze.exe"
},
"author": "Cristiano Calcagno",
"keywords": [
"rescript",
"tooling"
],
"bugs": {
"url": "https://github.com/cristianoc/reanalyze/issues"
},
"homepage": "https://github.com/cristianoc/reanalyze#readme"
}