forked from Urigo/angular-meteor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.11 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
{
"name": "angular-meteor",
"version": "1.3.9",
"main": "dist/angular-meteor.js",
"description": "Combining the simplicity and power of AngularJS and Meteor",
"keywords": [
"AngularJS",
"Meteor",
"angular-meteor",
"angular"
],
"license": "MIT",
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"lint": "eslint .",
"pretest": "npm run build:dist",
"test": "velocity test-packages ./tests --ci",
"test:watch": "parallelshell \"npm run watch\" \"velocity test-packages ./tests\"",
"dev:start": "node scripts/dev.js",
"dev:stop": "node scripts/dev.js --stop",
"watch": "webpack --watch --progress --config webpack/dist.js",
"prewatch:dev": "npm run dev:start",
"watch:dev": "webpack --watch --progress --config webpack/dev.js",
"build:dist": "webpack --progress --config webpack/dist.js",
"prebuild:dev": "npm run dev:start",
"build:dev": "webpack --progress --config webpack/dev.js",
"build:prod": "webpack --progress --config webpack/prod.js --optimize-minimize",
"build": "npm run build:dist && npm run build:prod",
"prepublish": "npm run build"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"jsondiffpatch": "^0.1.38",
"underscore": "^1.0.4"
},
"peerDependencies": {
"angular": "^1.4.0"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-core": "^6.4.5",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.3.13",
"commitizen": "^2.5.0",
"conventional-changelog-cli": "^1.1.1",
"cz-conventional-changelog": "^1.1.5",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-loader": "^1.2.1",
"eslint-plugin-import": "^0.13.0",
"husky": "^0.11.1",
"lodash": "^3.10.1",
"parallelshell": "^2.0.0",
"replace-in-file": "^1.0.2",
"validate-commit-msg": "^2.0.0",
"velocity-cli": "^0.4.3",
"webpack": "^1.12.9"
}
}