forked from mattphillips/pattern-matching
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "pattern-matching",
"version": "0.0.1",
"description": "An expressive pattern matching library",
"scripts": {
"prettier": "prettier 'src/**/*.js' --write --single-quote=true",
"test": "jest",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattphillips/pattern-matching.git"
},
"keywords": [
"pattern",
"matching"
],
"author": "Matt Phillips (mattphillips)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattphillips/pattern-matching/issues"
},
"homepage": "https://github.com/mattphillips/pattern-matching#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"coveralls": "^2.12.0",
"jest": "^19.0.2",
"prettier": "^0.22.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"dependencies": {
"lodash": "^4.17.4"
}
}