-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
91 lines (90 loc) · 3.7 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
{
"name": "nyaf",
"version": "0.7.4",
"description": "\"Not Yet Another Framework\" is, well, just another framework. It is, however, extremely simple to learn.",
"main": "index.js",
"scripts": {
"test": "jest",
"test-report": "jest --coverageReporters=\"text-summary\"",
"lint": "tslint --project ./src/packages/@nyaf/lib && tslint --project ./src/packages/@nyaf/forms && tslint --project ./src/packages/@nyaf/store",
"nyaf": "set NODE_ENV=prod && webpack --config webpack.config.lib.js",
"nyaf-debug": "set NODE_ENV=dev && webpack --config webpack.config.lib.js",
"build": "rimraf dist/@nyaf && cp README.md ./src/packages/@nyaf/lib && rimraf out-tsc && tsc && npm run nyaf",
"build-debug": "rimraf dist/@nyaf && rimraf out-tsc && tsc && npm run nyaf-debug",
"publish": "npm run build && cd dist/@nyaf/lib && npm publish --access public && cd ../../.. && cd dist/@nyaf/forms && npm publish --access public && cd ../../.. && cd dist/@nyaf/store && npm publish --access public && cd ../../../ && cd dist/@nyaf/cli && npm publish --access public",
"doc": "rimraf dist/manual && rimraf dist/apidoc && npm run t-lib && npm run t-forms && npm run t-store && mkdocs build && showdown makehtml -i README.md -o dist/readme.html && cp -r dist/manual ../nyaf-homepage/dist/manual && cp -r dist/apidoc ../nyaf-homepage/dist/ && cp -r dist/readme.html ../nyaf-homepage/dist/readme.html",
"t-lib": "typedoc --options typedoc.lib.json",
"t-forms": "typedoc --options typedoc.forms.json",
"t-store": "typedoc --options typedoc.store.json",
"publish-doc": "mkdocs gh-deploy",
"all": "rimraf dist && npm run build && npm run doc",
"postinstall": "echo sudo apt install mkdocs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joergkrause/nyaf.git",
"directory": "dist/@nyaf/lib"
},
"keywords": [
"web components",
"vanilla JS",
"es2015",
"es2018",
"es2020",
"framework",
"web app"
],
"author": "Joerg <isageek> Krause",
"license": "ISC",
"bugs": {
"url": "https://github.com/joergkrause/nyaf/issues"
},
"homepage": "https://github.com/joergkrause/nyaf#readme",
"devDependencies": {
"@teamsupercell/typings-for-css-modules-loader": "^2.5.2",
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"@types/prismjs": "^1.26.0",
"@types/yargs": "^17.0.20",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"css-modules-typescript-loader": "^4.0.1",
"file-loader": "^6.2.0",
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^5.5.0",
"inquirer": "^9.1.4",
"jest": "^29.3.1",
"jsdom": "^21.1.0",
"mkdocs": "0.0.1",
"node-sass": "^8.0.0",
"postcss-custom-properties": "^12.1.11",
"postcss-loader": "^7.0.2",
"prismjs": "^1.29.0",
"purgecss-webpack-plugin": "^5.0.0",
"rimraf": "^4.1.1",
"sass-loader": "^13.2.0",
"showdown": "^2.1.0",
"style-loader": "^3.3.1",
"to-string-loader": "^1.2.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"tslint": "^6.1.3",
"typedoc": "^0.23.24",
"typescript": "^4.9.4",
"typings-for-css-modules-loader": "^1.7.0",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"yeoman-generator": "^5.7.0"
},
"dependencies": {
"@nyaf/forms": "file:./src/packages/@nyaf/forms",
"@nyaf/lib": "file:./src/packages/@nyaf/lib",
"@nyaf/store": "file:./src/packages/@nyaf/store",
"uuid": "^9.0.0",
"yargs": "^17.6.2"
}
}