-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 922 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
35
36
37
38
39
{
"name": "constraint-solver",
"version": "4.0.0",
"description": "a constraint solver based on kiwi.js (cassowary)",
"main": "lib/constraints.js",
"type": "module",
"scripts": {
"build": "peggy --format es -o lib/grammar.js --optimize size grammar.pegjs",
"prepublishOnly": "npm run build",
"test": "tap test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mreinstein/constraint-solver.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/mreinstein/constraint-solver/issues"
},
"homepage": "https://github.com/mreinstein/constraint-solver#readme",
"dependencies": {
"kiwi.js": "^1.1.1",
"peggy": "^1.1.0"
},
"devDependencies": {
"tap": "^15.0.4"
},
"keywords": [
"cassowary",
"kiwi.js",
"constraint solver",
"layout",
"autolayout"
],
"engines": {
"node": ">=12.17"
}
}