-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "vanillajs-cookbook",
"version": "0.1.1",
"description": "Examples of how to use vanillajs to do common tasks that we commonly use frameworks for.",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "webpack --watch --watch-poll",
"lint": "standard --fix --verbose | snazzy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QuantumInformation/vanillajs-cookbook.git"
},
"keywords": [
"vanillajs",
"router",
"native",
"calendar"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/QuantumInformation/vanillajs-cookbook/issues"
},
"homepage": "https://github.com/QuantumInformation/vanillajs-cookbook#readme",
"devDependencies": {
"@types/node": "^7.0.23",
"babel-core": "^6.18.2",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.18.0",
"css-loader": "^0.28.4",
"html-webpack-plugin": "https://github.com/ampedandwired/html-webpack-plugin",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"postcss-css-variables": "^0.7.0",
"postcss-loader": "^2.0.5",
"postcss-smart-import": "^0.7.4",
"snazzy": "^7.0.0",
"standard": "^10.0.2",
"style-loader": "^0.18.1",
"typescript": "^2.0.3",
"webpack": "^2.1.0-beta.27"
},
"dependencies": {
"moment": "^2.12.0",
"normalize.css": "^7.0.0"
}
}