-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.36 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
{
"name": "three-charts",
"version": "0.0.1",
"description": "WebGL accelerated charts based on Threejs",
"main": "build/index.js",
"dependencies": {
"createjs-tweenjs": "^0.6.0",
"css-element-queries": "^0.3.2",
"deep-extend": "^0.4.1",
"es6-promise": "^3.2.1",
"eventemitter2": "^0.4.11",
"gsap": "^1.18.4",
"is-plain-object": "^2.0.1",
"three": "^0.81"
},
"devDependencies": {
"awesome-typescript-loader": "^2.2.4",
"copy-webpack-plugin": "^3.0.1",
"ncp": "^2.0.0",
"on-build-webpack": "^0.1.0",
"rimraf": "^2.5.2",
"three-charts": "git@github.com:holiber/three-charts.git",
"typescript": "^2.0",
"unminified-webpack-plugin": "^1.1.1",
"webpack": "^1.13.1"
},
"typings": "./build/index.d.ts",
"scripts": {
"start": "npm run rimraf -- build && webpack --watch --progress --colors",
"build": "rimraf -- build && webpack --progress --colors",
"build-plugins": "npm run rimraf -- plugins/build && npm run rimraf -- plugins/build-tmp && webpack --config config/webpack.plugins.js --progress --colors ",
"reinstall-charts": "rimraf -- node_modules/three-charts && npm cache clean && npm i",
"postinstall": "typings install",
"test": "echo \"Error: no test specified\" && exit 1",
"rimraf": "rimraf"
},
"author": "Alexander Nazarov github.com/holiber",
"license": "ISC"
}