-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.76 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": "frint-router-preact",
"version": "0.1.0",
"description": "Preact Components for router in FrintJS",
"main": "lib/index.js",
"homepage": "https://github.com/frintjs/frint-preact/tree/master/packages/frint-router-preact",
"scripts": {
"lint": "cross-env ../../node_modules/.bin/eslint --color '{src,test}/**/*.js'",
"transpile": "cross-env ../../node_modules/.bin/babel src --out-dir lib",
"test": "cross-env ../../node_modules/.bin/mocha --colors --compilers js:babel-register --require ../../common/test.setup.js --recursive ./src/**/*.spec.js",
"cover:run": "cross-env ../../node_modules/.bin/nyc --reporter=json --require babel-register ../../node_modules/.bin/mocha --colors --compilers js:babel-register --require ../../common/test.setup.js --recursive ./src/**/*.spec.js",
"cover:report": "cross-env ../../node_modules/.bin/nyc report",
"cover": "npm run cover:run && npm run cover:report",
"dist:lib": "cross-env ../../node_modules/.bin/webpack --config ./webpack.config.js",
"dist:min": "cross-env DIST_MIN=1 ../../node_modules/.bin/webpack --config ./webpack.config.js",
"dist": "npm run dist:lib && npm run dist:min",
"prepublish": "npm run transpile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frintjs/frint-preact.git"
},
"author": "frint-preact authors (https://github.com/frintjs/frint-preact/graphs/contributors)",
"keywords": [
"frint"
],
"dependencies": {
"frint-preact": "^0.1.0",
"frint-router": "^5.0.0",
"frint-router-component-handlers": "^5.0.0"
},
"devDependencies": {
"cross-env": "^5.0.5",
"frint": "^5.0.0",
"frint-config": "^5.0.0"
},
"bugs": {
"url": "https://github.com/frintjs/frint-preact/issues"
},
"license": "MIT"
}