forked from caplin/FlexLayout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·38 lines (38 loc) · 1.18 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
{
"name": "flexlayout-react",
"version": "0.3.3",
"description": "A multi-tab layout manager",
"main": "lib/index.js",
"types": "./declarations/index.d.ts",
"scripts": {
"test": "jasmine",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"build:commonjs": "tsc -p tsconfig2.json",
"build:umd": "webpack --config webpack_build.config.js",
"build:umd:min": "webpack -p --config webpack_build_min.config.js",
"doc": "typedoc --out typedoc --mode file --exclude \"**/examples/**/*.tsx\" --readme none "
},
"author": "Caplin Systems Ltd",
"repository": "https://github.com/caplin/FlexLayout",
"license": "ISC",
"peerDependencies": {
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"devDependencies": {
"@types/jasmine": "^2.8.8",
"@types/react": "^16.4.9",
"@types/react-dom": "^16.0.7",
"awesome-typescript-loader": "^5.2.0",
"jasmine": "^3.2.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"source-map-loader": "^0.2.3",
"typedoc": "^0.11.1",
"typescript": "^3.0.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {}
}