-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.53 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": "fun-component",
"version": "4.1.0",
"description": "Functional approach to authoring performant HTML components using plugins",
"main": "index.js",
"scripts": {
"posttest": "standard",
"test": "npm run test:node && npm run test:browser",
"test:browser": "browserify test/browser.js | tape-run | tap-format-spec",
"test:node": "NODE_ENV=test node test/node.js | tap-format-spec",
"example:mapbox": "npm install --prefix ./examples/mapbox && npm start --prefix ./examples/mapbox -- -- --transform-key=development",
"example:list": "npm install --prefix ./examples/list && npm start --prefix ./examples/list -- -- --transform-key=development",
"example:expandable": "npm install --prefix ./examples/expandable && npm start --prefix ./examples/expandable -- -- --transform-key=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tornqvist/fun-component.git"
},
"keywords": [
"choo",
"nanohtml",
"component",
"html",
"function"
],
"author": "Carl Törnqvist <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tornqvist/fun-component/issues"
},
"homepage": "https://github.com/tornqvist/fun-component#readme",
"devDependencies": {
"@tap-format/spec": "^0.2.0",
"browserify": "^15.2.0",
"nanohtml": "^1.2.1",
"standard": "^11.0.0",
"tape": "^4.8.0",
"tape-run": "^3.0.0"
},
"dependencies": {
"nanoassert": "^1.1.0",
"nanocomponent": "^6.4.2",
"nanologger": "^1.3.0"
}
}