-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "@akdasa-studios/framework",
"version": "0.6.0",
"description": "Framework to build every app",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"./dist/index.js",
"./dist/index.d.ts"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "jest && stryker run",
"test:unit": "jest",
"test:mutational": "stryker run",
"lint": "eslint ./lib --ext .ts",
"build": "webpack && tsc --emitDeclarationOnly --declaration --outDir ./temp && api-extractor run --local && true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akdasa-studios/framework.git"
},
"author": "Advaita Kṛṣṇa Dāsa",
"license": "ISC",
"bugs": {
"url": "https://github.com/akdasa-studios/framework/issues"
},
"homepage": "https://github.com/akdasa-studios/framework#readme",
"dependencies": {
"uuid": "^9.0.0"
},
"devDependencies": {
"@stryker-mutator/core": "^8.0.0",
"@stryker-mutator/jest-runner": "^8.0.0",
"@stryker-mutator/typescript-checker": "^8.0.0",
"@types/jest": "^29.4.4",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"resolve-tspaths": "^0.8.8",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack-cli": "^5.0.1",
"webpack": "^5.76.2",
"@microsoft/api-extractor": "^7.39.4"
}
}