-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.85 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
{
"name": "cite-this",
"version": "1.0.0",
"description": "A plugin widget to generate citation files (.ris, .bib, .enw).",
"author": "Jess Champion <jess@silverstripe.com>",
"private": false,
"main": "dist/cite-this.js",
"repository": "https://github.com/JessChampion/citethis",
"dependencies": {
"ramda": "^0.25.0",
"vue": "^2.5.9"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.10",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.1.0",
"cross-env": "^5.1.3",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jasmine": "^2.9.1",
"eslint-plugin-jest": "^21.7.0",
"eslint-plugin-vue": "^4.2.0",
"jest": "^22.1.4",
"jest-vue-preprocessor": "^1.3.1",
"laravel-mix": "^1.7.2",
"mutation-observer": "^1.0.3",
"vue-template-compiler": "^2.5.13",
"vue-template-es2015-compiler": "^1.6.0",
"webpack-bundle-analyzer": "^2.9.2"
},
"scripts": {
"build": "node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "yarn build --watch",
"lint": "eslint --ext .js,.vue src test/unit/specs",
"test": "node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=test jest --config test/unit/jest.conf.js",
"test:coverage": "yarn test --coverage",
"test:watch": "yarn test --watch --notify",
"package": "node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"deploy:demo": "git subtree push --prefix dist/demo origin gh-pages"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}