-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1020 Bytes
/
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
{
"name": "cerebro-math",
"version": "1.0.0",
"description": "Basic math operations plugin for cerebro app",
"license": "MIT",
"repository": "KELiON/cerebro-google",
"author": {
"name": "Alexandr Subbotin",
"email": "[email protected]",
"url": "asubbotin.ru"
},
"engines": {
"node": ">=4"
},
"scripts": {
"start": "cerebro-scripts start",
"build": "cerebro-scripts build",
"test": "cerebro-scripts test --env=jsdom",
"prepublish": "rimraf ./dist && npm run build"
},
"main": "dist/index.js",
"keywords": [
"cerebro",
"cerebro-extracted-plugin",
"math",
"calculations"
],
"dependencies": {
"cerebro-tools": "^0.1.0",
"cerebro-ui": "^0.0.16"
},
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 100,
"lines": 90,
"statements": 90
}
}
},
"devDependencies": {
"cerebro-scripts": "^0.0.19",
"rimraf": "^2.6.1"
}
}