-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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": "@avidian/functions",
"version": "1.0.1",
"description": "Extra utility functions for common usage.",
"main": "lib/index.js",
"types": "types/index.d.ts",
"private": false,
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run clean && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"clean": "rm -rf lib && rm -rf types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/avidianity/functions.git"
},
"keywords": [
"Functions",
"Utilities"
],
"author": "John Michael Manlupig",
"license": "MIT",
"bugs": {
"url": "https://github.com/avidianity/functions/issues"
},
"homepage": "https://github.com/avidianity/functions#readme",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"typescript": "^4.3.5"
},
"dependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^8.2.3",
"@types/node": "^16.3.3",
"chai": "^4.3.4",
"mocha": "^9.0.2",
"ts-node": "^10.1.0"
}
}