-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.83 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
{
"name": "flexbox.js",
"description": "Typescript flexbox-based layout engine",
"version": "1.0.17",
"author": "Planning.nl, Bas van Meurs",
"bugs": {
"url": "https://github.com/Planning-nl/flexbox.js/issues",
"email": "[email protected]"
},
"devDependencies": {
"@planning.nl/eslint-config": "^1.0.6",
"@planning.nl/webpack-config": "^1.0.4",
"@types/chai": "^4.2.10",
"@types/mocha": "^7.0.2",
"@types/sinon": "^7.5.2",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^7.1.0",
"sinon": "^9.0.1",
"ts-loader": "^6.2.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"files": [
"cjs/**",
"esm/**",
"dist/**",
"src/**",
"types/**"
],
"homepage": "https://github.com/Planning-nl/flexbox.js#readme",
"keywords": [],
"license": "apache",
"main": "cjs/index.js",
"module": "esm/index.js",
"jsdelivr": "dist/flexbox.js.js",
"unpkg": "dist/flexbox.js.js",
"repository": "github:Planning-nl/flexbox.js",
"scripts": {
"build": "npm run build:cjs & npm run build:esm & npm run build:umd",
"build:cjs": "tsc --module commonjs --outDir cjs",
"build:esm": "tsc --module es2015 --outDir esm",
"build:umd": "NODE_ENV=production webpack --progress --display-error-details",
"lint": "eslint -c .eslintrc.js 'src/**/*.ts'",
"lint:fix": "eslint --fix -c .eslintrc.js **/*.ts",
"prepare": "npm run build",
"prepublish": "npm run build",
"prepublishOnly": "npm test",
"test": "./node_modules/mocha/bin/mocha --require ts-node/register tests/test.*.ts",
"version": "npm run lint"
},
"types": "types/index.d.ts",
"engines": {
"node": ">=8.0.0"
}
}