-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.44 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
56
57
58
59
60
61
62
{
"name": "khufu",
"version": "0.5.2",
"description": "A template language for incremental-dom or DSL for javascript views",
"keywords": [
"redux",
"html",
"web",
"hot",
"incremental-dom"
],
"homepage": "http://github.com/tailhook/khufu",
"main": "lib/index.js",
"webpackLoader": "lib/loader.js",
"files": [
"lib",
"src"
],
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"babel-types": "^6.26.0",
"jison": "^0.4.17",
"postcss": "^6.0.10",
"postcss-safe-parser": "^3.0.1"
},
"devDependencies": {
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "6.24.1",
"chai": "*",
"core-js": "2.5.0",
"incremental-dom": "0.5.1",
"mocha": "*",
"redux": "3.7.2",
"redux-saga": "0.15.6",
"rimraf": "2.6.1",
"webpack": "^3.5.5",
"webpack-dev-server": "2.7.1"
},
"repository": {
"type": "git",
"url": "https://github.com/tailhook/khufu.git"
},
"scripts": {
"test": "mocha --compilers js:babel-register",
"build": "babel src --out-dir lib",
"prepublish": "rimraf lib && npm run build"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-object-rest-spread"
]
},
"author": "Paul Colomiets <paul@colomiets.name>",
"license": "(MIT OR Apache-2.0)"
}