-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.78 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
{
"name": "tinyjs-plugin-dragonbones",
"version": "0.1.10",
"author": "清扬陌客",
"description": "Tiny 骨骼动画",
"keywords": [
"tinyjs",
"plugin",
"dragonbones"
],
"repository": {
"type": "git",
"url": "https://github.com/qingyangmoke/tinyjs-plugin-dragonbones.git"
},
"main": "dist/index.debug.js",
"files": [
"dist",
"src",
"demo",
"test"
],
"scripts": {
"start": "webpack-dev-server --devtool source-map --inline --hot --host 0.0.0.0",
"prebuild": "npm run ci",
"build": "webpack --progress --colors",
"predoc": "rimraf docs",
"doc": "jsdoc README.md src -r -d docs -t node_modules/docdash",
"lint": "eslint src test/unit/**/*.test.js",
"test": "mocha ./test/unit/**/*.test.js --recursive --require ./test/setup.js",
"ci": "npm run lint && npm run test",
"preversion": "npm run ci",
"postversion": "git push --tags",
"prepublish": "npm run build"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-loader": "^6.3.1",
"babel-plugin-static-fs": "^1.1.0",
"babel-preset-es2015": "^6.22.0",
"chai": "~3.5.0",
"docdash": "^0.4.0",
"eslint": "~3.5.0",
"eslint-config-standard": "~6.0.1",
"eslint-plugin-promise": "~3.4.0",
"eslint-plugin-standard": "~2.0.1",
"jsdoc": "3.5.5",
"jsdom": "^11.3.0",
"mocha": "^3.4.2",
"rimraf": "^2.6.1",
"sinon": "~1.17.6",
"sinon-chai": "~2.8.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "~0.15.0"
},
"bugs": {
"url": "https://github.com/qingyangmoke/tinyjs-plugin-dragonbones/issues"
},
"homepage": "https://github.com/qingyangmoke/tinyjs-plugin-dragonbones#readme",
"dependencies": {
"tinyjs-plugin-mesh": "0.0.4"
}
}