-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
25 lines (25 loc) · 848 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
{
"name": "stranger-things",
"version": "1.0.0",
"description": "Remake of the Stranger Things intro in CSS / JS",
"main": "script.js",
"scripts": {
"compile:css": "./node_modules/.bin/node-sass styles.scss --output output -w",
"compile:postcss": "./node_modules/.bin/postcss --use autoprefixer -c postcss.json -w -o output/styles.css output/styles.css",
"compile:js": "./node_modules/.bin/babel script.js --presets es2015,stage-0 --out-dir output -w"
},
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer": "^6.4.1",
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"modernizr": "^3.3.1",
"node-sass": "^3.9.0",
"postcss": "^5.1.2",
"postcss-cli": "^2.6.0",
"postcss-import": "^8.1.2",
"reset-css": "^2.0.20160720"
}
}