-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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": "@oada/cerebral-module",
"version": "4.0.1",
"description": "OADA cerebral module",
"repository": "github:OADA/cerebral-module",
"main": "./build/index.js",
"scripts": {
"test": "mocha -w --require @babel/register test/**/*.test.js",
"build": "babel src --out-dir build",
"prepare": "npm run build",
"prettier": "prettier --write 'src/**/*.js'",
"build-watch": "babel --watch src --out-dir ./",
"dev": "cpx \"*.js\" $APP_DIR/node_modules/@oada/cerebral-module/ --watch --verbose"
},
"author": "oada",
"license": "Apache-2.0",
"dependencies": {
"@oada/oada-cache": "^4.0.0",
"debug": "^4.1.0",
"fs": "^0.0.1-security",
"lodash": "^4.17.15",
"url": "^0.11.0",
"uuid": "^7.0.3"
},
"peerDependencies": {
"cerebral": "^5.2.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"cerebral": "^5.2.1",
"mocha": "^7.1.1",
"prettier": "2.0.2",
"chai": "^4.1.2",
"assert": "^1.4.1"
}
}