-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "@mikezimm/fps-js",
"version": "1.0.13",
"description": "Library of reusable typescript/javascript functions, interfaces and constants",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"build": "del-cli \"./?(dist|lib)\" && tsc -p ./tsconfig.json && webpack",
"package": "webpack",
"watch": "webpack --watch",
"start": "webpack-dev-server --config ./webpack.config.cjs",
"clean": "del-cli \"./?(dist|lib)\"",
"lint": "eslint ./src --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikezimm/fps-JS.git"
},
"keywords": [
"SPFx",
"functions"
],
"author": "Mike Zimmerman",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikezimm/fps-JS/issues"
},
"browserslist": [
"last 1 version",
"> 1%",
"maintained node versions",
"not dead"
],
"devDependencies": {
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"del-cli": "^5.0.0",
"eslint": "^8.23.0",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.0"
},
"files": [
"/lib"
],
"dependencies": {}
}