-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.39 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
49
50
51
{
"name": "schema-entity",
"version": "0.1.3",
"description": "Base helper functions for working with data entities based on JSON Schema",
"main": "lib/index.js",
"files": [
"src",
"lib"
],
"scripts": {
"test": "npm run test:ava && npm run test:eslint",
"test:ava": "NODE_PATH=. ava \"src/**/_tests/*.test.js\" --timeout=10s",
"test:ava:watch": "NODE_PATH=. ava \"src/**/_tests/*.test.js\" --watch --timeout=10s",
"test:eslint": "eslint . --ext .js,.jsx",
"compile": "babel src --out-dir lib",
"clean": "rimraf lib",
"prepublish": "npm run compile",
"postpublish": "npm run clean"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henit/schema-entity.git"
},
"author": "Henrik Haugberg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/henit/schema-entity/issues"
},
"homepage": "https://github.com/henit/schema-entity#readme",
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"eslint": "^4.8.0",
"rimraf": "^2.6.2",
"sinon": "^4.0.1"
},
"dependencies": {
"core-js": "^2.5.1",
"lodash": "^4.17.4",
"sert-schema": "^0.1.3"
}
}