forked from IjzerenHein/kiwi.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.39 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "kiwi.js",
"version": "1.1.0",
"homepage": "https://github.com/IjzerenHein/kiwi.js",
"repository": "https://github.com/IjzerenHein/kiwi.js",
"main": "lib/kiwi.js",
"module": "es/kiwi.js",
"types": "es/kiwi.d.ts",
"author": "Chris Colbert <[email protected]>",
"contributors": [
{
"name": "Hein Rutjes <IJzerenHein>"
}
],
"description": "Kiwi is a high speed implementation of the Cassowary constraint solving algorithm",
"keywords": [
"cassowary",
"kiwi",
"kiwi.js",
"constraint solver",
"autolayout"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/IjzerenHein/kiwi.js/issues"
},
"files": [
"src",
"lib",
"es",
"COPYING.txt"
],
"devDependencies": {
"benchmark": "^2.1.1",
"cassowary": "0.0.2",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^3.1.2",
"rollup": "^0.65.0",
"rollup-plugin-uglify": "^5.0.2",
"tslint": "^5.9.1",
"typescript": "^3.0.3"
},
"scripts": {
"build": "tsc && tsc -t es6 --outDir tmp/es && rollup -c",
"test": "mocha",
"cov": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -R test/main",
"doc": "jsdoc2md -f tmp/kiwi.js -m none -g none > docs/Kiwi.md",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"bench": "node bench/main.js"
}
}