-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 890 Bytes
/
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
{
"name": "matches-shape",
"version": "2.1.0",
"description": "A tool for testing whether an object is of a given shape",
"author": "Sasha Klein",
"repository": {
"type": "git",
"url": "https://github.com/sashafklein/shape.git"
},
"license": "MIT",
"main": "lib/Shape.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "ava test --verbose",
"prepublish": "npm run build",
"build": "babel --presets es2015 -d lib/ src/",
"lint": "eslint ."
},
"ava": {
"files": [
"test/**/*Test.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"dependencies": {
"babel-cli": "^6.7.5",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"lodash": "^4.13.1"
},
"devDependencies": {
"ava": "^0.23.0",
"ava-describe": "2.0.0",
"babel-eslint": "^9.0.0"
}
}