-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.35 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": "@gossie/array-pipe",
"version": "1.2.0",
"description": "A pipe implementation for JavaScript arrays to increase runtime performance",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "jest --watch",
"test:ci": "jest",
"test:mutation": "stryker run",
"copyfiles": "cp -rf package.json dist && cp -rf README.md dist && cp -rf LICENSE dist",
"distNPM": "cd dist && npm publish --access public --registry=https://registry.npmjs.org/",
"distGH": "cd dist && npm publish --access public --registry=https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gossie/array-pipe.git"
},
"keywords": [
"javascript",
"array",
"pipe",
"polyfill"
],
"author": "André Schreck",
"license": "MIT",
"bugs": {
"url": "https://github.com/gossie/array-pipe/issues"
},
"homepage": "https://github.com/gossie/array-pipe#readme",
"devDependencies": {
"@stryker-mutator/core": "^2.4.0",
"@stryker-mutator/jest-runner": "^2.4.0",
"@stryker-mutator/typescript": "^2.4.0",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-typescript": "^7.7.4",
"@types/jest": "^24.0.23",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"typescript": "^3.7.3"
}
}