This repository has been archived by the owner on Sep 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 loc) · 1.96 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
{
"name": "chip",
"description": "A simple set of components for creating billing UI powered by Stripe",
"version": "1.2.0",
"author": "Dev7studios <gilbert@dev7studios.co>",
"license" : "GPL-3.0",
"main": "dist/chip.js",
"module": "src/js/lib.js",
"scripts": {
"lib:dev": "cross-env NODE_ENV=development webpack --config build/webpack.lib.js --watch --progress --hide-modules",
"lib:build": "cross-env NODE_ENV=production webpack --config build/webpack.lib.js --progress --hide-modules",
"demo:dev": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.demo.js --open --hot",
"demo:build": "cross-env NODE_ENV=production webpack --config build/webpack.demo.js --progress --hide-modules",
"unit:dev": "cross-env BABEL_ENV=test karma start tests/js/unit/karma.conf.js",
"unit": "cross-env BABEL_ENV=test karma start tests/js/unit/karma.conf.js --single-run",
"test": "npm run unit"
},
"dependencies": {
"lodash": "^4.17.4",
"vue": "^2.3.3"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-env": "^1.5.1",
"chai": "^4.0.2",
"chromedriver": "^2.30.1",
"cross-env": "^3.0.0",
"cross-spawn": "^5.1.0",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"inject-loader": "^3.0.0",
"karma": "^1.7.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.4.0",
"karma-sinon-chai": "^1.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.31",
"karma-webpack": "^2.0.3",
"lolex": "^1.6.0",
"mocha": "^3.4.2",
"nightwatch": "^0.9.16",
"phantomjs-prebuilt": "^2.1.14",
"selenium-server": "^3.4.0",
"sinon": "^2.3.5",
"sinon-chai": "^2.11.0",
"vue-loader": "^12.1.0",
"vue-template-compiler": "^2.3.3",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}