-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1 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
{
"name": "vue-nonreactive",
"version": "0.1.0",
"description": "Vue.js plugin that allows you to disable reactivity on an object",
"main": "vue-nonreactive.js",
"scripts": {
"test": "tap test.js --cov --nyc-arg=--require=babel-register",
"report-coverage": "nyc report --reporter=lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpkilby/vue-nonreactive.git"
},
"keywords": [
"vue",
"nonreactive",
"unobserve"
],
"author": "Ryan P Kilby <rpkilby@ncsu.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rpkilby/vue-nonreactive/issues"
},
"homepage": "https://github.com/rpkilby/vue-nonreactive#readme",
"jspm": {
"format": "esm"
},
"devDependencies": {
"babel-eslint": "^6.0.2",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"codecov": "^1.0.1",
"eslint": "^2.7.0",
"eslint-config-itng": "github:itng/eslint-config-itng#0.0.1",
"tap": "^5.7.1",
"vue": "*"
}
}