-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.2 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
{
"name": "solves-meta",
"author": "simshadows <[email protected]>",
"version": "0.0.0-dev",
"license": "AGPL-3.0-only",
"description": "Facilitates the development of user-friendly problem solving apps powered by declarative programming tools.",
"keywords": [],
"packageManager": "[email protected]",
"scripts": {
"devdebug": "yarn solves -s ./sample-specs/social-golfer.yml",
"devdebug2": "yarn solves -s ./sample-specs/graph-colouring.yml",
"devdebug3": "yarn solves -s ./sample-specs/cnf-sat.yml",
"devdebug3alt": "yarn solves -s ./sample-specs/cnf-sat-alt.yml",
"devdebug4": "yarn solves -s ./sample-specs/vertex-cover.yml",
"test": "yarn workspace solves test",
"build": "yarn workspace solves build",
"compile": "yarn workspace solves compile",
"solves": "yarn workspace solves solves",
"protostart": "yarn workspace solves-concrete-prototype start",
"protobuild": "yarn workspace solves-concrete-prototype build",
"ghpages-build": "yarn workspace solves-concrete-prototype build -o ../docs",
"ghpages-serve": "python3 -m http.server --directory ./docs"
},
"workspaces": [
"solves",
"solves-concrete-prototype",
"clingo-wrapper"
]
}