-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "abs-utilities",
"version": "1.0.2",
"description": "A simple personal collection of utility methods, aliases and polyfills",
"types": "dist/abs-utils.d.ts",
"browser": "dist/abs-utils.js",
"scripts": {
"cleanDist": "rimraf dist",
"buildTypescript": "tsc",
"copyTypescript": "copyfiles -f ./src/*.ts dist",
"generateNxScript": "node ./build-utils/generateNxScript.js ./dist/abs-utils.js",
"build": "npm run cleanDist && npm run buildTypescript && npm run copyTypescript && npm run generateNxScript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Abstractn/abs-utils.git"
},
"keywords": [
"typescript",
"javascript",
"utils",
"utilities",
"quick",
"alias",
"polyfill",
"shorthand"
],
"author": "Abstractn",
"license": "MIT",
"bugs": {
"url": "https://github.com/Abstractn/abs-utils/issues"
},
"homepage": "https://github.com/Abstractn/abs-utils#readme",
"devDependencies": {
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
}
}