-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "machine",
"version": "15.2.3",
"description": "Build functions in standardized containers.",
"keywords": [
"functions",
"containers",
"validation",
"coercion",
"type-checking",
"data-types"
],
"main": "index.js",
"scripts": {
"sandbox": "node -i -e '_ = require(\"@sailshq/lodash\"); global[require(\"./package.json\").name] = require(\"./\"); console.log(\"\\n\\n\\n\\n--\");'",
"test": "npm run lint && npm run custom-tests && npm run bench",
"custom-tests": "echo 'Skipping tests that still need updating...' #node ./node_modules/mocha/bin/mocha -R dot test/*.test.js",
"lint": "eslint . --max-warnings=0 --ignore-pattern 'test/' && echo '✔ Your code looks good.'",
"bench": "NODE_ENV=production node ./node_modules/mocha/bin/mocha -R dot --recursive -b test/benchmarks/"
},
"docs": {
"url": "http://node-machine.org/spec"
},
"author": "The Sails Company",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/node-machine/machine.git"
},
"bugs": {
"url": "http://sailsjs.com/bugs"
},
"engines": {
"node": ">= 4.0.0"
},
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"anchor": "^1.2.0",
"flaverr": "^1.7.0",
"parley": "^3.8.0",
"rttc": "^10.0.0-3"
},
"devDependencies": {
"async": "2.0.1",
"benchmark": "2.1.0",
"@sailshq/eslint": "^4.19.3",
"mocha": "3.0.2",
"test-machinepack-mocha": "^2.1.3"
}
}