-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.89 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.89 KB
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
{
"name": "@nashlabs/expecto",
"version": "0.1.0",
"description": "Manage your loading states (with first-class integration with Vue.js)",
"main": "dist/expecto.umd.js",
"module": "dist/expecto.esm.js",
"unpkg": "dist/expecto.min.js",
"repository": "https://github.com/nash403/expecto",
"bugs": {
"url": "https://github.com/nash403/expecto/issues"
},
"homepage": "https://github.com/nash403/expecto#readme",
"keywords": [
"vue",
"loading",
"loaders",
"state",
"vuex"
],
"author": "Honoré Nintunze <nintu.lab@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"release": "np",
"build": "NODE_ENV=production npm run build:browser && npm run build:es && npm run build:umd",
"build:browser": "rollup --config build/rollup.config.browser.js",
"build:es": "rollup --config build/rollup.config.es.js",
"build:umd": "rollup --config build/rollup.config.umd.js",
"dev": "cross-env NODE_ENV=development rollup --config build/rollup.config.es.js --watch",
"prepublishOnly": "npm run build",
"lint": "eslint --fix src/**/*.js tests/**/*.js",
"format": "prettier-eslint src/**/*.js tests/**/*.js --write",
"test": "ava"
},
"devDependencies": {
"ava": "^2.1.0",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-kentcdodds": "^12.0.0",
"esm": "^3.2.25",
"np": "*",
"prettier-eslint-cli": "^5.0.0",
"rollup": "^1.15.1",
"rollup-plugin-analyzer": "^3.0.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-vue": "^5.0.0",
"vue-template-compiler": "^2.6.10"
},
"publishConfig": {
"access": "public"
},
"ava": {
"require": [
"esm"
]
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}