-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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
63
64
65
{
"name": "infinite-application",
"version": "0.4.0",
"description": "A wrapper to provide an endless interface for partial application.",
"main": "index.js",
"repository": "https://github.com/anied/infiniteApplication.git",
"author": "Alexander Nied <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-add-module-exports": "^1.0.2",
"jest": "^23.6.0",
"regenerator-runtime": "^0.13.1"
},
"scripts": {
"build": "npx babel infiniteApplication.js --out-file index.js",
"prepublishOnly": "yarn test",
"preversion": "yarn test && yarn build",
"version": "yarn build && git add index.js",
"postversion": "git push && git push --tags",
"test": "jest",
"test:watch": "jest --watch",
"test:watch:debug": "node --inspect-brk node_modules/.bin/jest --runInBand"
},
"dependencies": {
"core-js": "2"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"browser": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"semi": [
1,
"always"
]
}
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": "> 0.5%, last 2 versions, Firefox ESR, not dead, ie 8-11, maintained node versions",
"corejs": "2",
"useBuiltIns": "usage"
}
]
],
"plugins": [
"add-module-exports"
]
}
}