-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·54 lines (54 loc) · 1.72 KB
/
package.json
File metadata and controls
executable file
·54 lines (54 loc) · 1.72 KB
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
{
"name": "hyperapp-devtools",
"version": "0.3.0",
"description": "Developer tools for Hyperapp projects",
"keywords": [
"hyperapp",
"devtools",
"debug"
],
"author": "Anthony Ferrando <ferrando.tony@gmail.com>",
"license": "MIT",
"main": "dist/hyperapp-devtools.js",
"minified:main": "dist/hyperapp-devtools.min.js",
"jsnext:main": "dist/hyperapp-devtools.es.js",
"module": "dist/hyperapp-devtools.es.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"clean": "rimraf dist .rpt2_cache",
"start": "rollup -c -w --serve",
"build": "npm run clean && npm run build:main && npm run build:min && npm run build:es",
"build:main": "rollup -c && rimraf .rpt2_cache",
"build:min": "rollup -c --min && rimraf .rpt2_cache",
"build:es": "rollup -c --es && rimraf .rpt2_cache",
"release": "npm run build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"dependencies": {
"codemirror": "^5.37.0",
"hyperapp": "^1.2.5"
},
"devDependencies": {
"minimist": "^1.2.0",
"node-sass": "4.9.0",
"rimraf": "2.6.2",
"rollup": "0.50.0",
"rollup-plugin-commonjs": "8.2.6",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-postcss": "^1.4.0",
"rollup-plugin-serve": "0.4.2",
"rollup-plugin-typescript2": "0.8.0",
"rollup-plugin-uglify": "2.0.1",
"typescript": "^2.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperstart/hyperapp-devtools.git"
},
"bugs": {
"url": "https://github.com/hyperstart/hyperapp-devtools/issues"
},
"homepage": "https://github.com/hyperstart/hyperapp-devtools#readme",
"prettier": {
"semi": false
}
}