-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 4.02 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "inmark",
"version": "1.3.1",
"description": "Image mark",
"main": "dist/inmark.min.js",
"scripts": {
"start": "node scripts/openServer.js",
"reload": "livereload 'dist/' -d",
"dev": "npm-run-all --parallel start dev:config",
"dev:config": "rollup -w -c scripts/rollup.config.js --environment NODE_ENV:development",
"dist:dev": "rollup -c scripts/rollup.config.js --environment NODE_ENV:production",
"dist:prod": "rollup -c scripts/rollup.config.prod.js --environment NODE_ENV:production",
"dev:wp": "webpack --watch --config scripts/webpack.inmark.dev.js & npm run start",
"dist:wp:dev": "webpack --color --config scripts/webpack.inmark.js",
"dist:wp:prod": "webpack --color --config scripts/webpack.inmark.pro.js",
"build": "rimraf dist && npm run dist:dev && npm run dist:prod",
"lint": "eslint --fix --ext .js src",
"test": "npm run lint",
"karma": "npm run lint && karma start scripts/karma.inmark.test.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lhywell/inmark.git"
},
"keywords": [
"Mark",
"Label",
"Annotations"
],
"author": "Bailian",
"license": "Apache-2.0",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"deepmerge": "^1.5.2",
"http-server": "^0.11.1",
"opn": "^5.3.0",
"zrender": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.12.1",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-stage-0": "^7.0.0",
"autoprefixer-loader": "^2.0.0",
"babel-loader": "^8.0.0",
"chai": "^4.1.2",
"css-loader": "^0.23.1",
"eslint": "^3.12.2",
"eslint-plugin-html": "^1.7.0",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.8.5",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-loader": "^0.3.0",
"html-webpack-plugin": "^2.28.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-sinon-chai": "^1.3.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^2.0.9",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"livereload": "^0.9.1",
"mocha": "^5.0.2",
"npm-run-all": "^4.1.5",
"rollup": "^2.33.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-serve": "^1.1.0",
"sinon": "^4.4.2",
"sinon-chai": "^3.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-merge": "^3.0.0"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"bugs": {
"url": "https://github.com/lhywell/inmark/issues"
},
"homepage": "https://github.com/lhywell/inmark",
"directories": {
"example": "examples",
"test": "test"
}
}