-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "alpml",
"version": "0.0.1",
"description": "A composition-based Javascript/HTML framework without need for bundlers, based on Alpine.js",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "jest --detectOpenHandles --forceExit",
"serve": "parcel examples/hello-alpml/index.html --port 3000 --dist-dir out",
"copy": "cp -f index.js dist/alpml.js",
"minify": "rm dist/alpml.min.js || echo 'no pre-existing alpml.min.js' && terser index.js -c -o dist/alpml.min.js",
"publish": "npm run copy && npm run minify"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sopherapps/alpml.git"
},
"keywords": [
"Alpine.js",
"Reactivity",
"WebComponents",
"JavaScript",
"Framework"
],
"author": "Martin Ahindura",
"license": "MIT",
"bugs": {
"url": "https://github.com/sopherapps/alpml/issues"
},
"homepage": "https://github.com/sopherapps/alpml#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"jest-puppeteer": "^9.0.1",
"parcel": "^2.10.2",
"prettier": "3.0.3",
"puppeteer": "^21.5.1",
"terser": "^5.24.0"
},
"jest": {
"preset": "jest-puppeteer"
}
}