-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.77 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
{
"name": "cample",
"version": "3.2.1-beta.1",
"description": "Cample.js - one of the fastest frameworks without a virtual DOM on the Internet!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsc --watch",
"lint": "npx eslint src/**/* --fix",
"lint:test": "npx eslint test/**/* --fix",
"test": "mocha --recursive",
"test:watch": "mocha --watch --recursive",
"prebuild": "npm run lint",
"coverage": "c8 --reporter=lcov npm run test",
"coverage:default": "c8 npm run test",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Camplejs/Cample.js.git"
},
"keywords": [
"framework",
"web",
"cample",
"cample.js",
"UI",
"design",
"component",
"html",
"javascript",
"components",
"reactive",
"without virtual dom",
"without vdom",
"reactivity"
],
"author": "Anton Maklakov",
"license": "MIT",
"bugs": {
"url": "https://github.com/Camplejs/Cample.js/issues"
},
"homepage": "https://camplejs.github.io",
"engines": {
"node": ">=10.12.0"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@babel/register": "^7.23.7",
"@types/jsdom": "^21.1.6",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"c8": "^9.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jsdom": "^24.0.0",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"node-html-parser": "^6.1.12"
}
}