-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.63 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": "modern-linq",
"version": "0.9.2",
"description": "Linq implementation for JS",
"main": "index.js",
"module": "index.esm.js",
"author": "Ventsislav Mladenov",
"license": "MIT",
"private": false,
"type": "module",
"types": "index.d.ts",
"scripts": {
"build": "rollup -c ./rollup.config.js",
"test-js": "mocha --require @babel/register test/unit/*.spec.js",
"test-ts": " tsc -p ./test/ts/tsconfig.json && mocha --require @babel/register test/ts/*.spec.js && rm test/ts/*.spec.js",
"test": "yarn test-js && yarn test-ts",
"benchmark": "node --experimental-modules --es-module-specifier-resolution=node test/benchmark/start.js"
},
"repository": {
"type": "git",
"url": "git@github.com:Indomitable/modern-linq.git"
},
"bugs": {
"url": "https://github.com/Indomitable/modern-linq/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"iterable",
"linq",
"C#",
"iterator"
],
"files": [
"src/",
"index.d.ts",
"index.esm.js",
"index.js",
"package.json",
"README.md",
"LICENSE"
],
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-private-methods": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/register": "^7.7.7",
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"babel-plugin-module-resolver": "^4.0.0",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"microtime": "^3.0.0",
"mocha": "^6.2.2",
"nyc": "^15.0.0",
"rollup": "^1.27.14",
"rollup-plugin-babel": "^4.3.3",
"typescript": "^3.7.4"
}
}