-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.54 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
{
"name": "@avidian/extras",
"version": "1.0.1",
"private": false,
"description": "Extra features on native objects.",
"types": "types/index.d.ts",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist && rm -rf types",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"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 dist --extensions \".ts,.tsx\" --source-maps inline"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/avidianity/extras"
},
"author": "John Michael Manlupig",
"license": "MIT",
"homepage": "https://github.com/avidianity/extras",
"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",
"@types/chai": "^4.2.14",
"@types/lodash": "^4.14.170",
"@types/mocha": "^8.2.2",
"@types/node": "^16.3.0",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"dayjs": "^1.10.5",
"lodash": "^4.17.21"
}
}