-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.71 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ad",
"version": "1.0.0",
"description": "ad control manager",
"scripts": {
"build": "mkdirp dist && webpack --progress --colors",
"build:min": "mkdirp dist && cross-env AD_ENV=production webpack -p --progress --colors",
"clean": "del-cli dist/**",
"dist": "npm run clean && npm run build && npm run build:min",
"dev": "npm run clean && cross-env AD_ENV=development webpack-dev-server --content-base demos --inline --hot --host 0.0.0.0",
"fix:css": "stylefmt -r packages/**/*.scss",
"fix:js": "eslint --fix packages test webpack.config.js karma.conf.js",
"fix": "npm-run-all --parallel fix:*",
"lint:js": "eslint packages test scripts webpack.config.js karma.conf.js",
"lint:css": "stylelint packages/**/*.scss",
"lint": "npm-run-all --parallel lint:*",
"test:watch": "karma start --auto-watch",
"test:unit": "karma start --single-run",
"pretest": "npm run lint",
"test": "npm run test:unit",
"posttest": "istanbul report --root coverage text-summary && istanbul check-coverage",
"doc": "npm run jsdoc -d docs/jsdoc"
},
"author": "A.D.",
"license": "Apache-2.0",
"devDependencies": {
"autoprefixer": "^7.0.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-traverse": "^6.24.1",
"bel": "^5.0.0",
"codecov": "^2.1.0",
"cross-env": "^5.0.0",
"css-loader": "^0.28.0",
"del-cli": "^1.0.0",
"dom-events": "^0.1.1",
"eslint": "^4.6.1",
"eslint-config-google": "^0.8.1",
"extract-text-webpack-plugin": "^2.1.2",
"glob": "^7.1.1",
"istanbul": "^0.4.4",
"istanbul-instrumenter-loader": "^3.0.0",
"jsdoc": "^3.5.5",
"karma": "^1.1.1",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-sauce-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"mocha": "^3.5.3",
"node-sass": "^4.0.0",
"npm-run-all": "^3.1.2",
"postcss-loader": "^2.0.3",
"sass-loader": "^6.0.4",
"scss-parser": "^1.0.0",
"style-loader": "^0.18.0",
"stylefmt": "^6.0.0",
"stylelint": "^8.1.1",
"stylelint-config-standard": "^17.0.0",
"stylelint-order": "^0.6.0",
"stylelint-scss": "^1.5.1",
"testdouble": "^3.2.4",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.4.3"
},
"babel": {
"presets": [
[
"es2015",
{
"modules": false
}
]
],
"plugins": [
"transform-object-assign"
],
"env": {
"test": {
"presets": [
"es2015"
]
}
}
},
"dependencies": {
"chai": "^4.1.2"
}
}