-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
87 lines (87 loc) · 2.77 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
82
83
84
85
86
87
{
"name": "marklib",
"version": "0.0.0-semantically-released",
"main": "build/js/marklib.js",
"description": "A simple and fast zero-dependencies-library to transform text-selections into serializable markings.",
"repository": {
"type": "git",
"url": "git+https://github.com/BowlingX/marklib.git"
},
"homepage": "https://bowlingx.com",
"author": "David Heidrich",
"license": "MIT",
"devDependencies": {
"autoprefixer-core": "^6.0.1",
"autoprefixer-loader": "^3.1.0",
"babel-core": "^6.3.17",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.0",
"babel-plugin-transform-es2015-classes": "^6.9.0",
"babel-plugin-transform-proto-to-assign": "^6.9.0",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-plugin-transform-class-properties": "6.9.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.3.19",
"coveralls": "^2.11.6",
"css-loader": "^0.23.0",
"cz-conventional-changelog": "^1.1.5",
"del": "^2.2.0",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-loader": "^1.1.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"event-stream": "^3.3.2",
"exports-loader": "^0.6.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"flexcss": "git+https://github.com/BowlingX/flexcss.git",
"html-loader": "^0.4.0",
"imports-loader": "^0.6.5",
"istanbul": "^0.4.1",
"istanbul-instrumenter-loader": "^0.2.0",
"jasmine-core": "^2.4.1",
"jquery": "^3.0.0",
"karma": "^0.13.15",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-jasmine-jquery": "^0.1.1",
"karma-junit-reporter": "^1.0.0",
"karma-webpack": "^1.7.0",
"node-libs-browser": "^1.0.0",
"node-sass": "^3.4.2",
"sass-loader": "^3.1.2",
"semantic-release": "^4.3.5",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.9"
},
"engines": {
"node": ">=0.10.1"
},
"release": {
"debug": false,
"verifyConditions": {
"path": "./node_modules/semantic-release/dist/lib/plugin-noop.js"
}
},
"scripts": {
"test": "karma start --single-run --ci",
"tdd": "karma start --auto-watch",
"dist": "rm -Rf build && export NODE_ENV=production && webpack --optimize-minimize --optimize-occurence-order && export NODE_ENV=dev && webpack",
"develop": "webpack --watch",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"wolfy87-eventemitter": "^5.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}