-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.18 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": "cohere",
"version": "1.1.1",
"description": "Simple schemas",
"main": "dist/index.js",
"repository": "dylnslck/cohere",
"author": "Dylan Slack <dylanslack@gmail.com> (http://www.dylanslack.com)",
"license": "MIT",
"scripts": {
"build": "npm run clean && mkdirp dist && babel src --out-dir dist",
"clean": "rimraf dist coverage .nyc_output",
"prepublish": "npm run build",
"test": "npm run test:lint && npm run test:src",
"test:lint": "eslint src test",
"test:src": "nyc ava && nyc report --reporter=lcov"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.0.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.3",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^5.2.2",
"mkdirp": "^0.5.1",
"nyc": "^7.0.0",
"rimraf": "^2.5.3"
},
"ava": {
"files": [
"test"
],
"source": [
"src/**/*.{js}",
"!dist/**/*"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"keywords": [
"schema"
]
}