-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 KB
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
{
"name": "mvcobject",
"version": "2.2.0",
"description": "An implementation of Google Maps' MVCObject for Node.js and browers",
"main": "dist/mvcobject.js",
"module": "dist/mvcobject.esm.js",
"directories": {
"test": "test"
},
"scripts": {
"clean": "rm -rf dist",
"dev": "rollup -c build/rollup.config.js --watch",
"build": "npm run clean && NODE_ENV=production rollup -c build/rollup.config.js",
"test": "mocha"
},
"types": "mvcobject.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Wyntau/MVCObject.git"
},
"keywords": [
"MVCObject"
],
"author": "Wyntau",
"contributors": [
"Wyntau <wyntau@outlook.com>",
"saidz <zyx.zhuyuxiang@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Wyntau/MVCObject/issues"
},
"devDependencies": {
"chai": "~2.2.0",
"mocha": "~2.2.3",
"rollup": "^0.67.4",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-typescript": "^1.0.0",
"rollup-plugin-uglify": "^6.0.0",
"sinon": "~1.14.1",
"sinon-chai": "~2.7.0",
"tslib": "^1.9.3",
"typescript": "^3.2.2"
}
}