-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.26 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
{
"distro": "main",
"description": "Fepper: a Front End Prototyper tool for rapid prototyping of web sites",
"scripts": {
"install-base": "node run/install-base.js",
"postinstall": "node run/install.js",
"start": "node node_modules/fepper/index.js",
"test": "npm run test:eslint && npm run test:mocha",
"test:eslint": "eslint run && eslint test",
"test:mocha": "mocha test/install-tests.js && mocha test/install-extension-tests.js"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/electric-eloquence/fepper.git"
},
"keywords": [
"atomic",
"component",
"design",
"end",
"fepper",
"front",
"front-end",
"frontend",
"lab",
"library",
"pattern",
"prototype",
"prototyper",
"prototyping",
"template"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/electric-eloquence/fepper/issues"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"chai": "4.x",
"eslint": "8.x",
"fepper": "*",
"fepper-utils": "*",
"fs-extra": "^10.0.0",
"gulp": "https://github.com/electric-eloquence/gulp/tarball/v3-lts",
"husky": "4.x",
"mocha": "8.x"
}
}