-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"name": "vue-placeholders",
"version": "0.1.0",
"author": {
"name": "lithiumjake",
"email": "lithiumjake@mail.com",
"url": "lithiumjake.github.io"
},
"license": "MIT",
"description": "Vue directive for easy lorem-ipsum text and place-holder images",
"keywords": [
"Vue",
"lorem-ipsum"
],
"main": "dist/vue-placeholders.js",
"repository": {
"type": "git",
"url": "https://github.com/lithiumjake/vue-placeholders.git"
},
"bugs": "https://github.com/lithiummjake/vue-placeholders/issues",
"homepage": "https://github.com/lithiumjake/vue-placeholders",
"devDependencies": {
"testem": "*",
"mocha": "*",
"chai": "*",
"sinon": "*",
"sinon-chai": "*",
"browserify": "*",
"watchify": "*",
"uglify-js": "*"
},
"scripts": {
"test": "node_modules/.bin/testem ci",
"bdd": "node_modules/.bin/testem -g",
"build-debug": "node_modules/.bin/browserify src/index.js -d > dist/vue-placeholders.js",
"build-min": "node_modules/.bin/browserify src/index.js | uglifyjs > dist/vue-placeholders.min.js",
"build": "npm run build-debug && npm run build-min",
"watch": "node_modules/.bin/watchify src/index.js -d -o dist/vue-placeholders.js -v"
}
}