forked from endorphinjs/endorphin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.37 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
{
"name": "endorphin",
"version": "0.5.4",
"description": "Component-based UI rendering library",
"main": "./runtime/runtime.cjs.js",
"module": "./runtime/runtime.es.js",
"types": "./runtime/runtime-types.d.ts",
"scripts": {
"build": "npm run build:runtime && npm run build:helpers && npm run build:compiler && npm run build:transitions",
"build:runtime": "mkdir -p runtime && cp ./node_modules/@endorphinjs/template-runtime/dist/*.* ./runtime",
"build:helpers": "tsc -p ./helpers",
"build:compiler": "tsc -p ./compiler",
"build:transitions": "tsc -p ./transitions",
"test": "lerna run test",
"prepare": "npm run build"
},
"dependencies": {
"@endorphinjs/css-module": "^0.5.0",
"@endorphinjs/template-compiler": "^0.5.4",
"source-map": "^0.7.3"
},
"devDependencies": {
"@endorphinjs/template-runtime": "^0.5.4",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.0",
"lerna": "^3.15.0",
"typescript": "^3.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/endorphinjs/endorphin.git"
},
"keywords": [
"front-end",
"endorphin",
"endorphinjs",
"ui"
],
"author": "Sergey Chikuyonok <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/endorphinjs/endorphin/issues"
},
"homepage": "https://github.com/endorphinjs/endorphin#readme"
}