-
Notifications
You must be signed in to change notification settings - Fork 250
/
package.json
61 lines (61 loc) · 1.84 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
{
"name": "navigo",
"version": "8.11.1",
"description": "A simple vanilla JavaScript router",
"main": "lib/navigo.js",
"browser": "lib/navigo.min.js",
"module": "lib/es/index.js",
"jsnext:main": "lib/navigo.js",
"types": "./index.d.ts",
"author": {
"name": "Krasimir Tsonev",
"email": "[email protected]",
"url": "http://krasimirtsonev.com/blog"
},
"license": "MIT",
"keywords": [
"router",
"vanilla",
"history"
],
"repository": {
"type": "git",
"url": "[email protected]:krasimir/navigo.git"
},
"scripts": {
"dev": "webpack --progress --watch --env dev",
"dev-amd": "webpack --progress --watch --env dev --amd",
"release": "yarn test && webpack --env dev && webpack --env dev --amd && webpack --env build && webpack --env build --amd && yarn build-es",
"build-es": "babel src --no-babelrc --out-dir lib/es --extensions '.ts,.tsx' --ignore '**/*.spec.ts' --config-file ./.babelrc.es",
"test": "./node_modules/.bin/jest",
"test-watch": "./node_modules/.bin/jest --watch",
"repl": "node -i -e \"$(< ./lib/webpack-library-starter.js)\""
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"@jest/console": "26.6.2",
"@types/jest": "26.0.19",
"babel-jest": "26.6.3",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-add-module-exports": "1.0.4",
"babel-plugin-transform-class-properties": "6.24.1",
"cross-env": "7.0.3",
"jest": "26.6.3",
"mocha": "^4.0.1",
"webpack": "5.11.0",
"webpack-cli": "4.2.0",
"yargs": "^10.0.3"
},
"jest": {
"setupFilesAfterEnv": [
"./jest/setup.js"
],
"verbose": false,
"globals": {}
}
}