forked from chrishutchinson/cardkit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 3 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
{
"name": "cardkit",
"version": "2.0.6",
"description": "A simple, powerful and fully configurable image editor for web browsers and servers. Optional UI included.",
"main": "cardkit.js",
"homepage": "https://times.github.io/cardkit",
"bugs": {
"url": "https://github.com/times/cardkit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/times/cardkit.git"
},
"scripts": {
"test": "./node_modules/.bin/istanbul cover --dir test/coverage ./node_modules/.bin/_mocha -- --compilers js:babel-core/register --require ignore-styles",
"jsdoc": "./node_modules/.bin/jsdoc -c ./jsdoc.config.json -d ./docs/code -t ./node_modules/minami --verbose -R ./README.md",
"demo": "./node_modules/webpack/bin/webpack.js --env=dist-docs",
"docs": "npm run jsdoc; npm run demo",
"start": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js -d --content-base ./src --hot --open",
"dist": "npm run build",
"build": "echo \"[NOTICE] This task will build ALL CardKit versions\"; echo \"[LOG] Building DOM library\"; npm run build-dom; echo \"[LOG] Building server library\"; npm run build-server; echo \"[LOG] Building core library\"; npm run build-core; echo \"[LOG] Building DOM <script> library\"; npm run build-dom-script; echo \"[LOG] Building core <script> library\"; npm run build-core-script",
"build-dom": "./node_modules/webpack/bin/webpack.js --env=dist-dom",
"build-server": "./node_modules/webpack/bin/webpack.js --env=dist-server",
"build-core": "./node_modules/webpack/bin/webpack.js --env=dist-core",
"build-dom-script": "./node_modules/webpack/bin/webpack.js --env=dist-dom-script",
"build-core-script": "./node_modules/webpack/bin/webpack.js --env=dist-core-script"
},
"author": "Chris Hutchinson <chris.hutchinson@thetimes.co.uk>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.16.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.16.0",
"chai": "^3.5.0",
"css-loader": "^0.25.0",
"eslint": "^3.9.1",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-jsx": "^3.2.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-loader": "^1.6.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^6.5.0",
"eslint-plugin-standard": "^2.0.1",
"file-loader": "^0.9.0",
"ignore-styles": "^5.0.1",
"istanbul": "^1.1.0-alpha.1",
"jsdoc": "^3.4.2",
"jsdom": "^9.5.0",
"lodash": "^4.16.3",
"minami": "^1.1.1",
"minimist": "^1.2.0",
"mocha": "^3.1.0",
"mocha-jsdom": "^1.1.0",
"node-sass": "^3.10.0",
"sass-loader": "^4.0.2",
"sinon": "^1.17.6",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
},
"dependencies": {
"btoa": "^1.1.2",
"deep-extend": "^0.4.1",
"react": "^15.3.2",
"react-color": "^2.3.2",
"react-dom": "^15.3.2",
"rvg.js": "^1.1.0",
"svg2png": "4.0.0"
}
}