-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.15 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": "verwalter",
"description": "Micro utility (583 bytes compressed) that manages initialising and teardown of components (e.g. jQuery plugins) as soon as specific DOM nodes are added into the document, respectively removed from it.",
"main": "./src/manager.js",
"scripts": {
"dev": "npm run watch & npm run serve",
"commit": "git-cz -n",
"coveralls": "cat ./coverage/report-lcovonly.txt | ./node_modules/coveralls/bin/coveralls.js",
"optimize": "./node_modules/.bin/uglifyjs ./src/manager.js --compress --mangle > ./dist/manager.min.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"serve": "./node_modules/.bin/serve --port 1234",
"test-local": "standard && ./node_modules/.bin/karma start --single-run",
"karma": "standard && ./node_modules/.bin/karma start",
"test": "standard && ./node_modules/.bin/karma start --ci --single-run",
"watch": "npm-watch"
},
"repository": {
"type": "git",
"url": "https://github.com/jonathanweiss/component-manager.git"
},
"author": "Jonathan Weiß",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonathanweiss/component-manager/issues"
},
"homepage": "https://github.com/jonathanweiss/component-manager#readme",
"watch": {
"optimize": {
"patterns": [
"src"
],
"extensions": "js",
"quiet": true
}
},
"devDependencies": {
"coveralls": "^2.11.12",
"cz-conventional-changelog": "^2.0.0",
"jasmine-core": "^2.6.2",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-jasmine-matchers": "^3.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.32",
"npm-watch": "^0.2.0",
"safari-launcher": "^2.0.5",
"semantic-release": "^6.3.2",
"serve": "^6.0.2",
"standard": "^10.0.1",
"uglify-js": "^3.0.23"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard": {
"ignore": [
"karma.conf.js"
]
}
}