-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
83 lines (83 loc) · 2.36 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@lume/autolayout",
"version": "0.10.2",
"homepage": "https://github.com/lume/autolayout",
"repository": {
"type": "git",
"url": "git://github.com/lume/autolayout.git"
},
"type": "module",
"main": "dist/AutoLayout.js",
"types": "dist/AutoLayout.d.ts",
"description": "Apple's Auto Layout and Visual Format Language for javascript (using cassowary constraints)",
"keywords": [
"autolayout",
"autolayoutjs",
"autolayout.js",
"auto-layout",
"cassowary",
"cassowaryjs",
"cassowary.js",
"vfl",
"evfl",
"visualformatlanguage"
],
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/lume/autolayout/issues"
},
"engines": {
"node": ">= 0.10.0"
},
"files": [
"src",
"dist",
"LICENSE"
],
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"benchmark": "^2.1.3",
"browserify": "^13.3.0",
"chai": "^3.5.0",
"combined-stream": "^1.0.5",
"envify": "^4.0.0",
"esperanto": "^0.7.5",
"grunt": "~0.4.1",
"grunt-cli": "^0.1.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-jsdoc-to-markdown": "^2.0.0",
"grunt-peg": "1.5.0",
"istanbul": "^0.4.5",
"lodash": "^4.17.4",
"minifyify": "^7.3.4",
"minimist": "^1.2.0",
"mocha": "^9.0.0",
"platform": "^1.3.1",
"prettier": "3.0.3",
"rimraf": "^3.0.2",
"typescript": "^5.0.0"
},
"dependencies": {
"@lume/kiwi": "^0.4.0"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist/ tmp/",
"build:parser": "rimraf 'src/parser/*.js' && npm run grunt -- parser",
"test": "npm run lint && mocha",
"cov": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -R",
"bench": "node bench/main.js",
"format": "npm run prettier",
"prettier": "prettier . --write",
"lint": "prettier . --check",
"doc": "npm run grunt -- doc && node scripts/docs-update-headings.js && prettier docs/AutoLayout.md --write",
"grunt": "grunt --gruntfile Gruntfile.cjs",
"version": "npm run clean && npm run build && npm test && npm run bench && git add .",
"release:patch": "npm version --no-workspaces patch --message 'v%s' && npm publish && git push --follow-tags",
"release:minor": "npm version --no-workspaces minor --message 'v%s' && npm publish && git push --follow-tags",
"release:major": "npm version --no-workspaces major --message 'v%s' && npm publish && git push --follow-tags"
}
}