-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 943 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 943 Bytes
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
{
"author": "Arttu Manninen",
"name": "object-validator",
"description": "Validate a JS object",
"version": "0.0.2",
"repository": {
"url": ""
},
"main": "./build/validator",
"keywords": [
"validator",
"json"
],
"dependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.8.0"
},
"devDependencies": {
"expect": "^1.19.0",
"expect.js": "^0.3.1",
"mocha": "^2.4.5",
"should": "^8.3.1"
},
"scripts": {
"compile": "./node_modules/.bin/babel --presets es2015,stage-0 -d build/ lib/",
"prepublish": "npm run compile",
"postinstall": "npm run compile",
"test": "NODE_ENV=test PROJECT_NAME=api mocha --compilers js:babel-core/register --timeout 10000 tests/**"
},
"engines": {
"node": "*"
}
}