-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.39 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
{
"name": "cnc-tskit",
"version": "1.7.4",
"description": "Bunch of reusable & composable TypeScript functions",
"main": "dist-cjs/index.js",
"module": "dist-es6/index.js",
"jsnext:main": "dist-es6/src/index.js",
"types": "dist-es6/cnc-tskit.d.ts",
"browser": "dist-umd/cnc-tskit.js",
"scripts": {
"test": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\", \"target\":\"es2018\"}' NODE_ENV=test node_modules/mocha/bin/mocha --require ts-node/register './test/**/*.ts'",
"clean": "rm -rf ./dist-cjs/* ./dist-es6/* ./dist-umd/*",
"build": "node_modules/rollup/dist/bin/rollup --c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/czcorpus/cnc-tskit.git"
},
"bugs": {
"url": "https://github.com/czcorpus/cnc-tskit/issues"
},
"keywords": [
"collections"
],
"author": "Tomas Machalek <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/czcorpus/cnc-tskit#readme",
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"esbuild": "^0.13.8",
"mocha": "^9.1.3",
"rollup": "^2.58.0",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-esbuild": "^4.6.0",
"rollup-plugin-terser": "^7.0.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"peerDependencies": {
"rxjs": "^7.5.7"
}
}