forked from FGRibreau/ui-predicate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.89 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
62
63
64
65
66
67
{
"name": "ui-predicate-vue",
"version": "1.0.0",
"description": "Finally a predicate UI component for VueJS",
"main": "src/index.js",
"scripts": {
"test": "echo 'not ready for prime-time';true",
"build": "echo 'not ready for prime-time';parcel build --out-file=ui-predicate-vue --out-dir=lib --no-cache --detailed-report --target=browser src/index.js",
"test:debugger": "node --inspect-brk node_modules/.bin/jest --watch",
"test:watch": "jest --watch --coverage=false",
"test:watch:coverage": "npm run --silent test:watch -- --coverage",
"test:coverage": "true",
"test:image-snapshots": "npm run docs:storybook:build && npm run test:image-snapshots:run",
"test:image-snapshots:run": "jest --projects=./image-snapshots",
"lint": "eslint --fix examples src",
"docs:build": "npm run --sient docs:jsdoc:build && npm run --sient docs:storybook:build && npm run --silent docs:getting-started:build",
"docs:jsdoc:build": "jsdoc -c ../../jsdoc.json",
"docs:storybook:build": "build-storybook --output-dir ../../docs/packages/$npm_package_name/$npm_package_version/examples",
"docs:storybook:watch": "start-storybook -p 9001",
"docs:getting-started:build": "parcel build --no-cache --public-url=./ --out-dir=../../docs/packages/$npm_package_name/$npm_package_version/getting-started getting-started/index.html"
},
"author": "Francois-Guillaume Ribreau <[email protected]> (http://fgribreau.com/)",
"license": "MIT",
"devDependencies": {
"@storybook/addon-actions": "5.2.1",
"@storybook/addon-backgrounds": "4.0.0-alpha.16",
"@storybook/addon-centered": "5.1.9",
"@storybook/addon-jest": "4.0.0-alpha.16",
"@storybook/addon-knobs": "4.0.0-alpha.16",
"@storybook/addon-links": "4.0.0-alpha.16",
"@storybook/addon-notes": "4.0.0-alpha.16",
"@storybook/addon-options": "4.0.0-alpha.16",
"@storybook/addon-storyshots": "4.0.0-alpha.16",
"@storybook/addon-storysource": "4.0.0-alpha.16",
"@storybook/addon-viewport": "4.0.0-alpha.16",
"@storybook/addons": "4.0.0-alpha.16",
"@storybook/vue": "4.0.0-alpha.16",
"@vue/component-compiler-utils": "^1.2.1",
"@vue/test-utils": "^1.0.0-beta.24",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.0",
"babel-preset-vue": "^2.0.2",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"eslint-plugin-vue": "^4.5.0",
"file-loader": "^1.1.11",
"jest": "^22.4.3",
"jest-serializer-vue": "^1.0.0",
"jest-vue-preprocessor": "^1.4.0",
"jsdoc": "^3.5.5",
"parcel-bundler": "^1.7.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"svg-url-loader": "^2.3.2",
"vue": "^2.5.16",
"vue-jest": "^2.5.0",
"vue-loader": "15.9.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.6.0",
"webpack-dev-server": "^3.1.3"
},
"dependencies": {
"lodash": "^4.17.10",
"ui-predicate-core": "^0.6.3"
}
}