-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.04 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
{
"name": "tagmeme",
"description": "Simple tagged unions",
"version": "0.0.10",
"author": "Chris Andrejewski <[email protected]>",
"babel": {
"presets": [
"es2015",
"stage-3"
]
},
"bugs": {
"url": "https://github.com/andrejewski/tagmeme/issues"
},
"dependencies": {
"invariant": "^2.2.4"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"fixpack": "^2.3.1",
"standard": "^12.0.1"
},
"homepage": "https://github.com/andrejewski/tagmeme#readme",
"keywords": [
"adt",
"match",
"pattern",
"tag",
"union"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/andrejewski/tagmeme.git"
},
"scripts": {
"build": "babel src --out-dir lib",
"lint": "fixpack && standard --fix",
"prepublishOnly": "npm run build",
"test": "npm run lint && ava"
}
}