This repository has been archived by the owner on Aug 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.64 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
{
"name": "riot-view-router",
"version": "0.1.4",
"description": "Lightweight, extensive riot.js router for tag views.",
"main": "dist/riot-view-router.js",
"scripts": {
"bundle:prod": "node_modules/.bin/cross-env NODE_ENV=production node_modules/.bin/webpack --config webpack.conf.js",
"bundle:dev": "node_modules/.bin/webpack --config webpack.conf.js",
"bundle": "npm run bundle:dev && npm run bundle:prod",
"lint": "node_modules/.bin/eslint src/**.js",
"test:unit": "node_modules/.bin/jasmine test/unit/*.test.js",
"test:e2e": "node_modules/.bin/karma start test/karma.conf.js",
"test": "npm run test:unit && npm run test:e2e",
"build": "npm run lint && npm run bundle && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neetjn/riot-view-router.git"
},
"keywords": [
"riot",
"riot.js",
"javascript",
"route",
"tag"
],
"author": "John Nolette",
"license": "MIT",
"bugs": {
"url": "https://github.com/neetjn/riot-view-router/issues"
},
"homepage": "https://neetjn.github.io/riot-view-router/",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.0",
"electron": "^1.7.11",
"eslint": "^4.9.0",
"eslint-plugin-riot": "^0.1.7",
"jasmine": "2.5.2",
"karma": "^1.7.1",
"karma-coverage": "^1.1.1",
"karma-electron": "^5.2.1",
"karma-jasmine": "^1.1.0",
"karma-riot": "^2.0.0",
"random-js": "1.0.8",
"riot": "^3.7.3",
"webpack": "^3.8.1"
}
}