-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 1.26 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
{
"name": "mobx.dart",
"version": "1.0.0",
"description": "This file is purely to leverage NPM for running the scripts. This is NOT to track any dependencies.",
"scripts": {
"pub:get:mobx": "cd mobx; dart pub get;",
"pub:upgrade:mobx": "cd mobx; dart pub upgrade;",
"pub:get:mobx_codegen": "cd mobx_codegen; dart pub get;",
"pub:upgrade:mobx_codegen": "cd mobx_codegen; dart pub upgrade;",
"gen:mobx:example": "cd mobx/example; dart run build_runner build",
"gen:mobx_codegen": "cd mobx_codegen; dart run build_runner build",
"gen:mobx_examples": "cd mobx_examples; dart run build_runner build",
"gen:mobx_examples:watch": "cd mobx_examples; dart run build_runner watch --delete-conflicting-outputs",
"set:versions": "dart ./tool/expose_version.dart mobx flutter_mobx mobx_codegen",
"contrib:add": "all-contributors add",
"contrib:gen": "all-contributors generate",
"contrib:check": "all-contributors check",
"mobx:coverage:html": "cd mobx && ../tool/coverage.sh && genhtml --output-directory coverage/ coverage/lcov.info",
"mobx_codgen:coverage:html": "cd mobx_codegen && ../tool/coverage.sh && genhtml --output-directory coverage/ coverage/lcov.info"
},
"devDependencies": {
"all-contributors-cli": "^6.13.0"
}
}