-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.61 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
{
"name": "linq-for-js",
"version": "1.5.4",
"description": "LINQ to JS port using ESnext iterators and generators.",
"main": "index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "cross-env BABEL_ENV=rollup rollup -c rollup.config.js",
"release:patch": "npm run test && npm run build && npm version patch && git push origin HEAD --tags && npm publish",
"release:minor": "npm run test && npm run build && npm version minor && git push origin HEAD --tags && npm publish",
"release:major": "npm run test && npm run build && npm version major && git push origin HEAD --tags && npm publish",
"test": "jest --coverage",
"watch": "jest --watch --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcibique/linq-for-js.git"
},
"keywords": [
"LINQ",
"javascript",
"generators",
"iterators"
],
"author": "mcibique",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcibique/linq-for-js/issues"
},
"homepage": "https://github.com/mcibique/linq-for-js#readme",
"devDependencies": {
"babel-core": "6.26.3",
"babel-jest": "23.6.0",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-latest": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"cross-env": "5.2.0",
"jest": "23.6.0",
"jest-cli": "23.6.0",
"rimraf": "2.6.3",
"rollup": "1.15.1",
"rollup-plugin-babel": "3.0.7",
"rollup-plugin-node-resolve": "5.0.1",
"rollup-plugin-sourcemaps": "0.4.2",
"rollup-plugin-uglify": "6.0.2"
},
"jest": {
"rootDir": "./src"
}
}