-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "til",
"private": true,
"dependencies": {
"domready": "1.0.8",
"fontfaceobserver": "1.7.1",
"to-array": "0.1.4",
"viewloader": "1.1.1"
},
"devDependencies": {
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-config-standard": "^4.4.0",
"eslint-loader": "^1.2.0",
"eslint-plugin-standard": "^1.3.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"glob": "7.0.3",
"imports-loader": "^0.6.5",
"postcss": "^5.0.14",
"postcss-cssnext": "^2.4.0",
"postcss-import": "^7.1.3",
"postcss-loader": "^0.8.0",
"style-loader": "^0.13.0",
"webpack": "^1.13.0"
},
"engines": {
"node": ">= 4.4.2",
"npm": ">= 3.8.6"
},
"scripts": {
"clean": "rm -rf ./.tmp/dist/*",
"watch": "NODE_ENV=development webpack --config ./webpack.config.js --watch -d",
"prebuild": "npm run clean",
"build": "NODE_ENV=production webpack --config ./webpack.config.js -p --bail",
"lint": "eslint '/targets/**/*.js'; exit 0"
}
}