-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.53 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": "@znck/prop-types",
"version": "0.6.3",
"description": "Fluent prop validation for Vue",
"main": "dist/prop-types.js",
"module": "dist/prop-types.es.js",
"types": "types/index.d.ts",
"files": [
"dist/",
"src/",
"types/index.d.ts",
"remove.js"
],
"scripts": {
"test": "npm run test:unit && npm run test:types",
"test:unit": "jest",
"test:types": "tsc types/index.spec.ts",
"pre:build": "rm -rf dist/",
":build": "rollup -c --environment BUILD:production",
"prepublishOnly": "npm run :build",
":release": "standard-version",
"post:release": "git push --follow-tags origin master && npm publish",
"release": "npm run :release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/znck/vue-prop-types.git"
},
"keywords": [
"vue",
"prop-types",
"props",
"validation"
],
"author": "Rahul Kadyan <[email protected]> (https://znck.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/znck/vue-prop-types/issues"
},
"homepage": "https://github.com/znck/vue-prop-types#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.1.0",
"jest": "^24.1.0",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.3.1",
"standard-version": "^4.4.0",
"typescript": "^3.3.3"
},
"dependencies": {
"vue": "2.*"
},
"sideEffects": false,
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}