-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "typeflex",
"version": "0.1.0",
"description": "Typescript implementation of CSS flexbox layout algorithm, a pure typescript port of Facebook's Yoga",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-core": "^6.26.3",
"eslint": "^7.32.0",
"mocha": "^5.2.0",
"prettier": "^2.3.2",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.0",
"typescript": "^4.4.3",
"uglifyjs": "^2.4.11",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"test": "yarn build && mocha --expose-gc -r tests/tools.js tests/Facebook.Yoga/**/*.js",
"benchmark": "yarn build && node tests/run-bench tests/Benchmarks/YGBenchmark.js",
"format": "prettier -w src/**/*.ts",
"lint": "eslint ./src --ext .ts",
"lint-fix": "eslint ./src --ext .ts --fix"
},
"main": "dist/Yoga.js",
"types": "dist/out/api.d.ts",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dead/typeflex.git"
},
"keywords": [
"flex",
"flexbox",
"yoga",
"typescript",
"javascript"
],
"author": "dead",
"bugs": {
"url": "https://github.com/dead/typeflex/issues"
},
"homepage": "https://github.com/dead/typeflex#readme"
}