-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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
46
47
48
49
50
51
52
53
54
55
{
"name": "flaco",
"version": "2.0.0-3",
"description": "view engine library",
"main": "./dist/bundle/index",
"types": "./dist/declarations/index.d.ts",
"module": "./dist/bundle/module.js",
"directories": {
"test": "test"
},
"scripts": {
"test:ci": "npm run build && tsc -b test && rollup -c ./rollup/test.js | tape-run",
"test": "tsc -b test && rollup -c ./rollup/test.js | tee ./test/dist/debug.js | tape-run",
"build:clean": "rm -rf ./dist && mkdir -p ./dist/bundle && cp -r ./src ./dist/src",
"build:compile": "tsc",
"build:bundle": "rollup -c ./rollup/build.js && rollup -c ./rollup/cdn.js",
"build:example": "rm -rf ./examples/dist/*.js ./examples/dist/*.js.map && tsc -b examples && rollup -c ./examples/rollup.js",
"build": "npm run build:clean && npm run build:compile && npm run build:bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smart-table/flaco.git"
},
"keywords": [
"view",
"virtual-dom",
"vdom",
"jsx",
"hyperscript",
"ui",
"framework"
],
"files": [
"dist/bundle",
"dist/declarations"
],
"author": "Laurent Renard",
"license": "MIT",
"bugs": {
"url": "https://github.com/smart-table/flaco/issues"
},
"homepage": "https://github.com/smart-table/flaco#readme",
"devDependencies": {
"rollup": "^0.66.6",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"smart-table-core": "^3.0.2",
"tape-run": "^4.0.0",
"typescript": "^3.1.4",
"zora": "^2.0.1"
},
"dependencies": {
"smart-table-operators": "^2.0.10"
}
}