-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "enum-fp",
"version": "1.0.2",
"description": "Functional enum type for javascript with simple pattern matching",
"main": "./build/Enum.js",
"repository": "https://github.com/phenax/enum-fp",
"author": "Akshay Nair <[email protected]>",
"license": "MIT",
"keywords": [
"functional",
"fp",
"enum",
"type",
"js",
"pattern",
"matching",
"switch"
],
"scripts": {
"build": "babel src --out-dir build --minified --compact --no-comments --delete-dir-on-start",
"watch": "yarn build --watch",
"lint": "eslint ./src",
"test": "jest",
"test:ci": "jest",
"coverage": "jest --coverage",
"coverage:ci": "yarn coverage && codecov"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.0.0",
"codecov": "^3.1.0",
"eslint": "^5.9.0",
"jest": "^25.0.0"
}
}