-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.64 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
{
"name": "brisky-props",
"version": "1.2.4",
"description": "Adds attributes to Brisky",
"main": "index.js",
"scripts": {
"start": "watchify-server test/index.js",
"test": "(ducktape; node test) | tap-difflet && standard",
"dev": "nodemon test | tap-difflet",
"cover": "istanbul cover --report none --print detail test/index.js",
"docs": "node_modules/vigour-doc/bin/vdoc",
"travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vigour-io/brisky-props.git"
},
"author": "vigour.io <dev@vigour.io>",
"license": "ISC",
"bugs": {
"url": "https://github.com/vigour-io/brisky-props/issues"
},
"homepage": "https://github.com/vigour-io/brisky-props#readme",
"keywords": [
"reactive",
"state",
"element",
"DOM"
],
"dependencies": {
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.3.0",
"brisky-core": "^1.5.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"contributors": [
"Jim de Beer <jim@vigour.io>",
"Youri Daamen <youri@vigour.io>"
],
"devDependencies": {
"vigour-util": "^3.0.0",
"ducktape": "^1.0.0",
"vigour-state": "^4.0.0",
"coveralls": "^2.11.9",
"istanbul": "^0.4.3",
"nodemon": "^1.9.1",
"parse-element": "^2.0.3",
"pre-commit": "^1.1.3",
"standard": "^8.4.0",
"tap-difflet": "0.4.0",
"tape": "^4.4.0",
"vigour-doc": "^1.1.5",
"watchify-server": "^1.0.2"
}
}