This repository has been archived by the owner on Sep 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.88 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@ranndev/ui-guide",
"version": "0.2.0",
"description": "A programmatic way of making highlight guide",
"main": "./dist/js/cjs/index.js",
"module": "./dist/js/esm/ui-guide.js",
"typings": "./dist/typings/ui-guide.d.ts",
"scripts": {
"serve": "webpack-dev-server",
"prepublishOnly": "npm run build",
"build": "gulp build",
"postbuild": "tsc --emitDeclarationOnly --declaration --declarationMap --declarationDir \"./dist/typings\"",
"test:dev": "concurrently --names Server,Cypress --kill-others-on-fail \"npm:serve\" \"cypress open\"",
"lint": "tslint \"./cypress/**/*.ts\" \"./src/**/*.ts\" \"./typings/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ranndev/ui-guide.git"
},
"keywords": [
"ui",
"guide",
"intro",
"introduction"
],
"author": "Rannie Peralta",
"license": "MIT",
"bugs": {
"url": "https://github.com/ranndev/ui-guide/issues"
},
"homepage": "https://github.com/ranndev/ui-guide#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@cypress/code-coverage": "^1.10.2",
"@cypress/webpack-preprocessor": "^4.1.1",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@rollup/plugin-replace": "^2.2.1",
"@types/node": "^12.12.14",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.2.0",
"codecov": "^3.6.1",
"concurrently": "^5.0.0",
"css-loader": "^3.2.0",
"cypress": "^3.7.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-cli": "^2.2.0",
"gulp-if": "^3.0.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.1.0",
"istanbul-lib-coverage": "^2.0.5",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"nyc": "^14.1.1",
"popper.js": "^1.16.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rollup": "^1.27.5",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.25.2",
"sass-loader": "^8.0.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"peerDependencies": {
"popper.js": "^1.16.0"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}