-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.96 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
{
"name": "ultra",
"version": "0.7.2",
"description": "Router for component-based web apps. Pair with React, Preact, Vue.js, and others.",
"main": "./lib/ultra.js",
"module": "./lib/ultra.es.js",
"scripts": {
"test": "cross-env BABEL_ENV=test jest --useStderr",
"cover": "cross-env BABEL_ENV=test jest --coverage",
"format": "prettier --no-semi --single-quote --print-width 100 --write \"{src,test}/**/*.js\"",
"lint": "npm run format && eslint --ignore-path .gitignore src/**/*.js",
"build": "rollup -c && rollup -c --environment DIST",
"prepublishOnly": "npm run lint && npm run build",
"local": "npm run prepublishOnly && npm pack",
"preversion": "cd ./src/router && cross-env npm version $npm_package_version && git add -A package.json && cd ../..",
"postpublish": "cd ./src/router && npm publish"
},
"repository": "gt3/ultra-router",
"author": "Ankit Patel <[email protected]>",
"license": "MIT",
"devDependencies": {
"@gt3/eslint-config": "gist:eb3f2c746d399500ec5d8937ecee59b3",
"babel-jest": "^20.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-rewire": "^1.1.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-preset-es2016": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^4.0.0",
"eslint": "^3.19.0",
"jest": "^20.0.4",
"prettier": "^1.1.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-re": "=1.0.2",
"rollup-plugin-uglify": "^2.0.1",
"uglify-es": "^3.0.20"
},
"jest": {
"testRegex": "(/test/.*\\.test\\.js$)",
"coveragePathIgnorePatterns": [
"/test/",
"/node_modules/"
],
"testEnvironment": "node",
"testURL": "http://localhost:8080"
},
"eslintConfig": {
"extends": "@gt3"
},
"files": [
"dist",
"lib"
]
}