-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 KB
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
{
"name": "@prototypedjs/core",
"version": "0.0.2",
"description": "Build UIs without worrying about APIs existing. Works great with redux.",
"main": "dist/prototyped.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest --coverage",
"dev:test": "jest --watch --coverage",
"clean": "rimraf dist",
"prepublish": "run-s clean build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SkyIsTheLimit/prototyped.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SkyIsTheLimit/prototyped/issues"
},
"homepage": "https://github.com/SkyIsTheLimit/prototyped#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.3",
"@types/jest": "^28.1.6",
"jest": "^28.1.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.77.0",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.7",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
}