generated from crubier/starter-typescript-library-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.92 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@geospatial/development-testing",
"types": "src/index.ts",
"publishConfig": {
"access": "public",
"types": "lib/index.d.ts",
"main": "lib/index.cjs.js"
},
"version": "19.7.1",
"description": "Testing utils",
"license": "UNLICENSED",
"author": "Vincent Lecrubier <[email protected]>",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/sterblue/geospatial"
},
"homepage": "https://github.com/sterblue/geospatial",
"scripts": {
"build:deps": "ultra -r --build --filter + build:lib",
"build": "yarn build:rollup && yarn build:types",
"build:babel": "babel src --out-dir lib --config-file ./.babelrc.js --extensions \".ts,.tsx\" --source-maps inline",
"build:lib": "rollup -c",
"build:rollup": "rollup -c",
"build:types": "tsc --emitDeclarationOnly ",
"clean": "rm -rf lib",
"test": "jest",
"version:patch": "npm version patch"
},
"dependencies": {
"babel-runtime": "6.26.0",
"cuid": "2.1.8",
"is-uuid": "1.0.2",
"lodash": "4.17.20",
"mathjs": "6.0.3"
},
"devDependencies": {
"@babel/cli": "7.6.4",
"@babel/core": "7.11.5",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/polyfill": "7.6.0",
"@babel/preset-env": "7.12.11",
"@babel/preset-typescript": "7.12.7",
"@geospatial/development-babel-preset": "x.x.x",
"@geospatial/development-rollup-config": "x.x.x",
"@rollup/plugin-babel": "5.2.2",
"@rollup/plugin-commonjs": "17.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "11.0.1",
"babel-jest": "24.9.0",
"core-js": "3.6.5",
"fs-extra": "8.1.0",
"jest": "26.6.3",
"jest-image-snapshot": "4.3.0",
"rollup": "2.35.1",
"rollup-plugin-pnp-resolve": "2.0.0",
"ts-jest": "26.4.4",
"ts-pnp": "1.2.0",
"typescript": "4.1.3"
}
}