-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.69 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
{
"name": "carl-colvin-arts",
"version": "1.0.0",
"description": "Portfolio for Carl Colvin Arts",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"less": "^3.11.1",
"typescript": "^3.8.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run-script compile; npm run-script minify; npm run-script transpile; npm run-script build; npm run-script dev",
"compile": "for fileName in ./src/style/pgs/*.less ./src/style/pgs/services/*.less ./src/style/pgs/services/performances/*.less; do baseName=`basename ${fileName}`; base=${baseName%'.less'}; ./node_modules/less/bin/lessc $fileName ./lib/expanded_css/$base.css; done",
"minify": "for cssFile in ./lib/expanded_css/*.css; do basename=`basename ${cssFile}`; base=${basename%'.css'}; uglifycss ${cssFile} --output ./dist/styles/${base}.css; done",
"transpile": "./node_modules/typescript/bin/tsc",
"build": "babel ./lib/es6 --ignore ./lib/declarations --out-dir ./lib/es5/ --compact true --no-comments",
"dev": "browserify ./lib/es5/ --outfile ./dist/index.js --standalone begin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cicada1105/carl-colvin-arts.git"
},
"keywords": [
"Oboe",
"Music",
"Reeds",
"Reedmaking",
"Poetry",
"Poems",
"Performance",
"Editing",
"Writing"
],
"author": "Josh Colvin",
"license": "ISC",
"bugs": {
"url": "https://github.com/Cicada1105/carl-colvin-arts/issues"
},
"homepage": "https://github.com/Cicada1105/carl-colvin-arts#readme",
"directories": {
"lib": "lib"
}
}