-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "most-utils",
"description": "A collection of utilities for Most.js",
"private": true,
"author": {
"name": "craft ai",
"email": "[email protected]",
"url": "http://craft.ai/"
},
"repository": "github:craft-ai/most-utils",
"bugs": "https://github.com/craft-ai/most-utils/issues",
"homepage": "https://github.com/craft-ai/most-utils#readme",
"license": "BSD-3-Clause",
"scripts": {
"test": "lerna run test",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"test:coverage": "lerna run test:coverage",
"test:report": "lerna exec -- nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"node": ">= 6.9.1"
},
"devDependencies": {
"@types/node": "^8.10.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-craft-ai": "^2.3.0",
"lerna": "^2.9.1",
"mocha": "^5.0.5",
"most": "^1.7.3",
"nyc": "^11.6.0",
"typescript": "^2.8.1"
},
"workspaces": [
"packages/*"
]
}