-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 2.05 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
{
"name": "xvg",
"version": "1.2.0",
"description": "🔬 debug SVG paths in the browser",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test tape -r babel-register './src/**/*.spec.js' | faucet",
"test:watch": "NODE_ENV=test tape-watch -r babel-register './src/**/*.spec.js' | faucet",
"clean": "rm -rf build",
"postclean": "node config/clear-console.js",
"start": "npm run clean && NODE_ENV=development webpack-dashboard -- webpack-dev-server --config config/webpack.config.js",
"build": "npm run clean && NODE_ENV=production webpack -p --config config/webpack.config.js",
"build:profile": "npm run clean && NODE_ENV=production webpack -p --config config/webpack.config.js --profile --json > stats.json && webpack-bundle-analyzer stats.json",
"start:site": "npm run clean && NODE_ENV=development webpack-dashboard -- webpack-dev-server --config config/webpack.site.config.js --progress --colors",
"build:site": "npm run clean && NODE_ENV=production webpack -p --config config/webpack.site.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/winkerVSbecks/svg-x-ray.git"
},
"keywords": [
"SVG",
"debug"
],
"author": "Varun Vachhar",
"license": "MIT",
"bugs": {
"url": "https://github.com/winkerVSbecks/svg-x-ray/issues"
},
"homepage": "https://xvg.now.sh",
"dependencies": {
"@webpack-blocks/babel6": "^0.3.0",
"@webpack-blocks/dev-server2": "^0.3.0",
"@webpack-blocks/extract-text2": "^0.3.0",
"@webpack-blocks/webpack2": "^0.3.0",
"babel-eslint": "^7.1.1",
"babel-plugin-ramda": "^1.1.6",
"babel-preset-es2015": "^6.18.0",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^3.12.2",
"faucet": "^0.0.1",
"html-webpack-plugin": "^2.24.1",
"ramda": "^0.22.1",
"raw-loader": "^0.5.1",
"svgpath": "^2.2.0",
"tachyons": "^4.6.1",
"tape": "^4.6.3",
"tape-watch": "^2.2.4",
"webpack": "2.2.0-rc.3",
"webpack-bundle-analyzer": "^2.2.0",
"webpack-dashboard": "^0.2.1",
"webpack-dev-server": "2.2.0-rc.0"
}
}