-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "redmetrics2.js",
"version": "2.0.2",
"license": "MIT",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"module": "dist/esm/index.js",
"browser": "dist/iife/rm2.bundle.js",
"scripts": {
"format": "npx prettier --write src gulpfile.js tsconfig.* tests",
"bundle": "gulp bundle",
"watch": "gulp watch",
"iife": "gulp iife",
"cjs": "gulp cjs",
"esm": "gulp esm",
"test": "npm run bundle && jest && jest tests/esm.test.mjs",
"types": "npm up rm2-typings -f",
"prepare": "npm run format && npm run bundle"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"dotenv": "^10.0.0",
"esbuild": "0.14.10",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-esbuild": "^0.8.2",
"gulp-rename": "^2.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^27.0.4",
"prettier": "^2.6.2",
"typescript": "^4.3.4"
},
"dependencies": {
"rm2-typings": "git+https://github.com/play-curious/RedMetrics2-typing.git"
},
"jest": {
"rootDir": "tests"
}
}