-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 939 Bytes
/
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
{
"name": "@tannerntannern/budgeteer",
"version": "1.0.4",
"description": "A specialized constraint solver for budget flows",
"keywords": [
"budgeting",
"constraint solver"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"docs": "rimraf docs && typedoc --out docs ./src && touch ./docs/.nojekyll && git add docs",
"build": "rimraf dist && tsc",
"watch": "tsc --watch",
"version": "yarn build && yarn docs",
"release": "git push && git push --tags && npm publish --registry https://registry.npmjs.org --access public"
},
"dependencies": {
"kiwi.js": "^1.1.1"
},
"devDependencies": {
"rimraf": "^2.6.3",
"touch": "^3.1.0",
"typedoc": "^0.14.2",
"typescript": "3.4.5"
},
"repository": "https://github.com/tannerntannern/budgeteer.git",
"author": "Tanner Nielsen",
"license": "MIT"
}