forked from retejs/lifecycle-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 991 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
{
"name": "rete-lifecycle-plugin",
"version": "1.0.0-beta.1",
"description": "",
"main": "build/lifecycle-plugin.common.js",
"module": "build/lifecycle-plugin.esm.js",
"types": "types/index.d.ts",
"scripts": {
"build": "rete --build rete.config.js",
"build:dev": "rete --build rete.config.js --watch",
"prepublishOnly": "npm run build",
"prebuild": "npm run lint && npm run types",
"lint": "tsc",
"types": "tsc src/index.ts --target es5 --declaration --outDir ./types --downlevelIteration --emitDeclarationOnly"
},
"author": "Vitaliy Stoliarov",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/retejs/lifecycle-plugin.git"
},
"dependencies": {},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/preset-typescript": "^7.6.0",
"rete": "^1.4.2",
"rete-cli": "^0.6.0",
"typescript": "^3.7.0-beta"
},
"peerDependencies": {
"rete": "^1.4.2"
}
}