-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "incremental-hyperscript",
"version": "0.1.1",
"description": "A hyperscript-like interface for Incremental DOM",
"repository": {
"url": "https://github.com/rosston/incremental-hyperscript.git",
"type": "git"
},
"keywords": [
"incremental-dom",
"virtual",
"dom",
"browser"
],
"main": "dist/incremental-hyperscript.js",
"module": "src/incremental-hyperscript.js",
"scripts": {
"build": "webpack && webpack --env=min",
"prepublish": "npm run build",
"test": "standard && karma start"
},
"author": "Ross Brandes",
"license": "Apache-2.0",
"peerDependencies": {
"incremental-dom": "^0.5.1"
},
"devDependencies": {
"chai": "^3.5.0",
"incremental-dom": "^0.5.1",
"karma": "^1.4.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"mocha": "^3.2.0",
"standard": "^8.6.0",
"webpack": "^2.2.0-rc.5"
}
}