-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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": "swifty-enum",
"version": "2.0.0",
"description": "Swift-like enum with associated values",
"main": "build/index.js",
"scripts": {
"build": "babel src -d build",
"dev": "watch 'npm run build' src",
"test": "jest",
"test:watch": "npm test -- --watch",
"prepublish": "npm run build",
"release": "np"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/futantan/swifty-enum.git"
},
"keywords": [
"enum",
"swift",
"associated",
"values"
],
"author": "futantan",
"license": "MIT",
"bugs": {
"url": "https://github.com/futantan/swifty-enum/issues"
},
"homepage": "https://github.com/futantan/swifty-enum#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"codecov": "^3.0.4",
"jest": "^23.5.0",
"np": "^3.0.4",
"watch": "^1.0.2"
}
}