This repository was archived by the owner on Sep 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.28 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.28 KB
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
{
"private": true,
"version": "4.0.0-0",
"devDependencies": {
"@emotion/core": "^10.0.7",
"@secoya/collection.ts": "3.1.0",
"@testing-library/react": "9.1.4",
"@types/jest": "24.0.18",
"@types/node": "12.7.4",
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"coveralls": "3.0.6",
"docz": "next",
"docz-plugin-css": "0.11.0",
"docz-theme-default": "next",
"emotion-theming": "^10.0.17",
"jest": "24.9.0",
"jison": "0.4.18",
"prettier": "1.18.2",
"react": "16.9.0",
"react-dom": "16.9.0",
"rollup": "1.20.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-typescript": "1.0.1",
"ts-jest": "24.0.2",
"tslib": "1.10.0",
"tslint": "5.19.0",
"tslint-secoya": "2.0.7",
"typescript": "3.6.2"
},
"license": "BSD-3-Clause",
"main": "lib/index.js",
"module": "lib2015/index.js",
"repository": "https://github.com/thetrompf/tab-navigation.ts",
"scripts": {
"build": "tsc -p tsconfig.lib.json && tsc -p tsconfig.lib2015.json && tsc -p tsconfig.libnext.json && rollup -c rollup.config.dist.js",
"build:dist": "rm -Rf dist && rollup -c rollup.config.dist.js",
"build:example": "rollup -c rollup.config.example.js",
"build:lib": "rm -Rf lib package/build && tsc -p tsconfig.lib.json && cp -R package/build/* package/",
"build:lib2015": "rm -Rf package/build && tsc -p tsconfig.lib2015.json && find package/build -type f -exec mkdir ${{}#/build//}",
"build:libnext": "rm -Rf package/build && tsc -p tsconfig.libnext.json",
"clean": "rm -Rf package/build package/*.{js,map,mjs,ts}",
"docz:dev": "docz dev",
"docz:build": "docz build",
"fmt": "prettier --write -l \"src/**/*.ts?(x)\"",
"lint": "tslint --project tsconfig.json",
"prepublishOnly": "rm -Rf dist lib lib2015 libnext types && tslint --project tsconfig.json && jest && tsc -p tsconfig.lib.json && tsc -p tsconfig.lib2015.json && tsc -p tsconfig.libnext.json && rollup -c rollup.config.dist.js",
"test": "jest"
},
"types": "types/index.d.ts"
}