-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 795 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 795 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
{
"name": "@timesplinter/pimple",
"license": "LGPL-3.0-or-later",
"version": "2.0.0",
"module": "./lib/esm/index.js",
"main": "./lib/cjs/index.js",
"scripts": {
"test": "jest",
"test:cov": "jest --collect-coverage",
"transpile": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepublish": "npm run transpile"
},
"keywords": [],
"author": "Pascal Münst <dev@timesplinter.ch>",
"description": "A simple dependency-injection container written in TypeScript based on PHP's Pimple",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"typescript": "^4.9.5",
"ts-node": "^10.9.2"
}
}