-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.99 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
63
64
{
"name": "neverland",
"version": "4.3.3",
"description": "React like Hooks for hyperHTML",
"main": "cjs/index.js",
"module": "esm/index.js",
"unpkg": "min.js",
"types": "index.d.ts",
"scripts": {
"build": "npm run rollup && drop-babel-typeof index.js && npm run cjs && npm run min && npm run test && npm run size",
"build:types": "tsc --allowJs --emitDeclarationOnly",
"cjs": "ascjs --no-default esm cjs",
"min": "echo '/*! (c) Andrea Giammarchi - ISC */' > min.js && uglifyjs index.js -c -m >> min.js",
"rollup": "rollup --config rollup.config.js",
"size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c9 min.js | wc -c",
"test": "node -e 'require(`basichtml`).init();console.log(require(`.`))'",
"nightmare": "node test || (npm run kill && exit 1)",
"server": "node -e 'require(`fs`).writeFileSync(`pid`,require(`child_process`).spawn(`http-server`,[`test`,`-s`]).pid);'",
"kill": "kill -9 $(cat pid) && rm -f pid"
},
"keywords": [
"React",
"Hooks",
"hyperHTML"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"greenkeeper": {
"ignore": [
"rollup",
"rollup-plugin-babel",
"rollup-plugin-node-resolve"
]
},
"dependencies": {
"@ungap/weakmap": "^0.2.1",
"dom-augmentor": "^2.0.8",
"lighterhtml": "^4.1.1",
"uarray": "^1.0.0",
"umap": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"ascjs": "^4.0.1",
"basichtml": "^2.3.0",
"drop-babel-typeof": "^1.0.3",
"http-server": "^0.12.3",
"nightmare": "^3.0.2",
"rollup": "^2.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"typescript": "^4.0.5",
"uglify-es": "^3.3.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/neverland.git"
},
"bugs": {
"url": "https://github.com/WebReflection/neverland/issues"
},
"homepage": "https://github.com/WebReflection/neverland#readme"
}