forked from mabels/posco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.07 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
{
"name": "posco",
"version": "0.1.0",
"description": "",
"main": "dist/posco.js",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "webpack",
"build:watch": "webpack --watch --debug --output-pathinfo --progress",
"start": "nodemon ./dist/posco.js",
"pretest": "npm run build",
"test": "mocha --require ./test/setup dist/test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w",
"preversion": "npm test",
"version": "npm run build && conventional-changelog -p angular -v -r 0 > CHANGELOG.md && git add -A .",
"postversion": "git push && git push --tags",
"prepublish": "not-in-install && npm run build || echo 'In install cycle, skipping prepublish'"
},
"repository": {
"type": "git",
"url": "mabels/posco"
},
"license": "AFL-2.0",
"bugs": {
"url": "https://github.com/mabels/posco/issues"
},
"homepage": "https://github.com/mabels/posco#readme",
"devDependencies": {
"@types/chai": "^3.4.32",
"@types/mocha": "^2.2.31",
"@types/ws": "",
"awesome-typescript-loader": "1.1.1",
"babel-core": "6.9.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.10.3",
"chai": "3.5.0",
"css-loader": "0.23.1",
"cz-conventional-changelog": "1.1.6",
"enzyme": "2.3.0",
"extract-text-webpack-plugin": "1.0.1",
"globby": "5.0.0",
"html-webpack-plugin": "2.21.0",
"in-publish": "2.0.0",
"jsdom": "9.4.0",
"less": "2.7.1",
"typings": "1.3.2",
"less-loader": "2.2.3",
"mocha": "2.5.3",
"nodemon": "1.9.2",
"rimraf": "2.5.2",
"source-map-support": "0.4.1",
"style-loader": "0.13.1",
"tslint": "3.11.0",
"typescript": "2.0.0",
"webpack": "1.13.1"
},
"dependencies": {
"node-uuid": "1.4.7",
"ws": "1.1.1",
"ipaddress": "0.2.5",
"bufferutil": "1.2.1",
"utf-8-validate": "1.2.1",
"linebyline": "1.3.0",
"winston": "2.2.0"
},
"publishConfig": {
"tag": "next"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}