-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "paken",
"version": "0.0.0",
"description": "package.json to environment loader",
"keywords": [
"env",
"package",
"json",
"environment"
],
"main": "dist/paken.js",
"typings": "dist/index.d.ts",
"repository": "[email protected]:nampdn/paken.git",
"author": "Nam Pham <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"dist/*"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"prebuild": "npx rimraf dist"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.5.13",
"@types/node": "20.16.11",
"@types/read-pkg-up": "6.0.0",
"jest": "29.7.0",
"rimraf": "6.0.1",
"rollup": "4.24.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-json": "4.0.0",
"@rollup/plugin-node-resolve": "15.3.0",
"rollup-plugin-typescript2": "0.36.0",
"semantic-release": "24.1.2",
"ts-jest": "29.2.5",
"typescript": "5.6.2"
},
"dependencies": {
"read-pkg-up": "^11.0.0"
}
}