forked from dead/typeflex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "@play-co/typeflex",
"version": "0.0.3",
"description": "Typescript implementation of CSS flexbox layout algorithm, a pure typescript port of Facebook's Yoga",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/play-co/typeflex.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "restricted"
},
"devDependencies": {
"babel-core": "^6.26.3",
"mocha": "^5.2.0",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.0",
"typescript": "4.0.3",
"uglifyjs": "^2.4.11",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0"
},
"scripts": {
"build": "rm -rf lib && ! tsc",
"build:node": "rm -rf node && ! tsc -p tsconfig.node.json",
"check": "tsc --noEmit",
"test": "npm run build:node && mocha --expose-gc -r tests/tools.js tests/Facebook.Yoga/**/*.js",
"benchmark": "npm run build:node && node tests/run-bench tests/Benchmarks/YGBenchmark.js"
},
"main": "lib/api.js",
"types": "lib/api.d.ts",
"directories": {
"test": "tests"
},
"keywords": [
"flex",
"flexbox",
"yoga",
"typescript",
"javascript"
],
"author": "dead",
"bugs": {
"url": "https://github.com/dead/typeflex/issues"
},
"homepage": "https://github.com/dead/typeflex#readme"
}