This repository has been archived by the owner on Oct 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.24 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@reduct/assembler",
"description": "Parses a DOM Node for tags and executes the matching constructor on each element.",
"main": "dist/assembler.js",
"scripts": {
"prepublish": "npm run build",
"build": "browserify src/assembler.js -o dist/assembler.js --standalone reduct.assembler -t [ babelify --presets [ es2015 ] ] -p browserify-derequire",
"lint": "xo src/**/*.js",
"mocha": "export TEST=true && find ./src -name '*.spec.js' | xargs istanbul cover -x *.spec.js _mocha -- -R spec --compilers js:babel-register",
"test": "npm run lint && npm run mocha && npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/reduct/assembler.git"
},
"keywords": [
"dom",
"parser",
"domParser",
"assembler",
"spe",
"modules",
"components"
],
"author": "reduct",
"contributors": [
{
"name": "Tyll Weiß",
"email": "[email protected]",
"url": "https://github.com/Inkdpixels/"
},
{
"name": "André König",
"email": "[email protected]",
"url": "https://github.com/akoenig/"
},
{
"name": "Wilhelm Behncke",
"url": "https://github.com/grebaldi"
}
],
"license": {
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
},
"bugs": {
"url": "https://github.com/reduct/assembler/issues"
},
"homepage": "https://github.com/reduct/assembler",
"devDependencies": {
"@inkdpixels/commit-analyzer": "^1.0.0",
"@inkdpixels/release-notes-generator": "^1.0.0",
"@reduct/logger": "^1.1.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"browserify-derequire": "^0.9.4",
"chai": "^3.4.1",
"istanbul": "^0.4.1",
"jsdom": "^7.2.2",
"mocha": "^2.3.4",
"semantic-release": "^4.3.5",
"xo": "^0.12.1"
},
"xo": {
"esnext": true,
"envs": [
"node",
"mocha",
"browser",
"es6"
]
},
"release": {
"analyzeCommits": "@inkdpixels/commit-analyzer",
"generateNotes": "@inkdpixels/release-notes-generator"
}
}