-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
115 lines (115 loc) · 3.44 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": "svg-measure",
"version": "0.1.0",
"description": "",
"main": "./lib/index.js",
"typings": "./lib/index",
"types": "./lib/index",
"scripts": {
"cp": "rm -r ./docs/static && cp -R ./static ./docs && mv ./docs/static/index.html ./docs/ && mv ./docs/static/dist/sw.js ./docs/ ",
"start": "NODE_ENV=development webpack-dev-server --config ./webpack.config.js",
"build:dll": "NODE_ENV=production webpack --config ./webpack.config.dll.js",
"build": "NODE_ENV=production webpack && npm run cp",
"test": "electron-mocha --renderer -r ./tools/register \"src/test/**.test.ts\"",
"nyc": "nyc --extension .tsx --extension .ts --require ts-node/register -r html npm run test",
"test:watch": "npm run test -- -w --watch-extensions ts,tsx",
"doc": "typedoc --theme minimal --out ./docs --exclude ./test ./src && touch ./docs/.nojekyll",
"preversion": "npm run build && npm run build:dist && git add -A"
},
"pre-commit": [],
"repository": {
"type": "git",
"url": "git+https://github.com/hydux/hydux-pixi.git"
},
"keywords": [
"hydux",
"svg",
"design",
"measure",
"annotation",
"zeplin",
"sketch",
"DX",
"adobe",
"gravit"
],
"author": "Zack Young",
"license": "MIT",
"bugs": {
"url": "https://github.com/hydux/hydux-pixi/issues"
},
"homepage": "https://github.com/hydux/hydux-pixi#readme",
"config": {
"puppeteer_skip_chromium_download": true
},
"devDependencies": {
"@types/htmlparser2": "^3.7.31",
"@types/lodash": "^4.14.109",
"@types/lru-cache": "^4.1.1",
"@types/mathjs": "^3.21.0",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.56",
"@types/parse5": "^5.0.0",
"@types/pixi.js": "^4.7.3",
"@types/prismjs": "^1.9.0",
"@types/react": "^16.3.16",
"@types/react-dom": "^16.0.6",
"@types/react-dropzone": "^4.2.0",
"@types/tinycolor2": "^1.4.0",
"autodll-webpack-plugin": "^0.4.2",
"awesome-typescript-loader": "^5.0.0",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.1.1",
"css-loader": "^0.28.11",
"debug": "^3.1.0",
"del-cli": "^1.1.0",
"electron": "^2.0.2",
"electron-mocha": "^6.0.3",
"file-loader": "^1.1.11",
"html-webpack-harddisk-plugin": "^0.2.0",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^11.10.0",
"mocha": "^4.0.1",
"mochify": "^5.8.0",
"nyc": "^11.8.0",
"offline-plugin": "^5.0.5",
"power-assert": "^1.4.4",
"pre-commit": "^1.2.2",
"raw-loader": "^0.5.1",
"recast": "^0.15.2",
"source-map-loader": "^0.2.3",
"style-loader": "^0.21.0",
"ts-node": "^6.0.3",
"tsconfig-paths": "^3.3.2",
"tslint": "^5.10.0",
"tslint-config-standard": "^7.0.0",
"typedoc": "^0.9.0",
"typescript": "^2.9.1",
"url-loader": "^1.0.1",
"webpack": "^4.10.2",
"webpack-cli": "^3.0.2",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"cherow": "^1.6.8",
"dexie": "^2.0.4",
"dragscroll": "^0.0.8",
"emotion": "^9.1.3",
"highlight.js": "^9.12.0",
"hydux": "^0.4.8",
"hydux-mutator": "^0.1.11",
"hydux-pixi": "^0.1.0",
"hydux-react": "^0.3.1",
"lru-cache": "^4.1.3",
"mathjs": "^4.4.2",
"parse5": "^5.0.0",
"react-clipboard.js": "^2.0.0",
"react-contexify": "^3.0.1",
"react-dropzone": "^4.2.11",
"react-emotion": "^9.1.3",
"react-loading": "^2.0.2",
"reflect-metadata": "^0.1.12",
"tinycolor2": "^1.4.1",
"tslib": "^1.9.2"
}
}