-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.13 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
{
"name": "sipa",
"version": "0.9.39",
"date": "2024-11-18T12:40:34.642Z",
"description": "Particularly simple old school single page lightweight web framework for clever javascript developers.",
"author": {
"name": "Matthäus J. N. Beyrle",
"email": "sipa.npm@mail.magynhard.de"
},
"license": "LGPL-3.0-only",
"homepage": "https://github.com/sipa-js/sipa#readme",
"preferGlobal": true,
"main": "bin/cli/cli.js",
"bin": {
"sipa": "./bin/cli/cli.js",
"simpartic": "./bin/cli/cli.js"
},
"scripts": {
"build": "node bin/build.js",
"debug": "CWD=$(pwd) && cd $PROJECT_DIR && node $CWD/bin/cli/cli.js n",
"doc": "node bin/doc.js",
"link_dev": "sudo npm link",
"unlink_dev": "sudo npm rm --global sipa",
"release": "npm publish --access public",
"test": "karma start --single-run",
"test_browser": "karma start --single-run --browsers Chrome",
"test_browser_keep": "karma start --no-single-run --browsers Chrome"
},
"files": [
"bin/cli/**/*",
"doc/**/*",
"lib/**/*",
"src/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sipa-js/sipa.git"
},
"bugs": {
"url": "https://github.com/sipa-js/sipa/issues"
},
"private": false,
"keywords": [
"sipa",
"javascript",
"web",
"framework",
"clever",
"simple",
"old school",
"node-js",
"single page app",
"particularly",
"sipa js",
"sipa-js",
"sipajs"
],
"dependencies": {
"chalk": "^4.1.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.1",
"curly-bracket-parser": "^1.3.3",
"fire-once": "^0.0.6",
"fs-extra": "^10.0.0",
"glob": "^7.1.6",
"jasmine-browser-runner": "^0.10.0",
"jasmine-core": "^3.10.1",
"jsdoc": "^3.6.6",
"jsdoc-to-markdown": "^6.0.1",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"lucky-case": "^1.1.8",
"prompt-sync": "^4.2.0",
"ruby-nice": "^0.2.8",
"sass": "^1.32.0",
"sipa-live-server": "^0.0.3",
"terser": "^5.10.0",
"typifier": "^0.1.2"
},
"resolutions": {
"colors": "1.4.0"
}
}