forked from cha63506/embed-8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 838 Bytes
/
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
{
"name": "cryptowatch-embed",
"version": "0.3.2",
"description": "Client library for configuring and embedding Cryptowatch charts",
"main": "dist/main.js",
"author": "Artur Sapek",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cryptowatch/embed.git"
},
"scripts": {
"build": "mkdir -p dist; $(npm bin)/babel -sd dist/ src/ --presets es2015 --plugins add-module-exports",
"prepublish": "npm run build",
"unit": "$(npm bin)/mocha tests/*.js"
},
"devDependencies": {
"babel": "6.3.13",
"babel-cli": "6.3.13",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.1.4",
"babel-preset-es2015": "^6.3.13",
"mocha": "^2.1.0",
"zombie": "^4.2.1"
},
"dependencies": {
"urijs": "^1.17.0"
}
}