-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 801 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 801 Bytes
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
{
"name": "@phibre/neta",
"description": "A lightweight JS framework powered by the prototype chain.",
"version": "0.0.5",
"author": {
"name": "Philip Breuer",
"url": "https://phibre.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phi-bre/neta.git"
},
"license": "MIT",
"main": "dist/lib.js",
"module": "dist/lib.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"type-fest": "^0.20.2",
"typescript": "^4.1.3"
}
}