-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·43 lines (43 loc) · 1.15 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
{
"name": "deviofoundation.org",
"version": "0.0.1",
"description": "Ways of thinking, a single goal!",
"homepage": "https://deviofoundation.org",
"repository": "deviofoundation/deviofoundation.org",
"license": "MIT",
"author": "CJ Patoilo <[email protected]>",
"main": "readme.md",
"keywords": [
"community",
"opensource"
],
"ignore": [
"artwork.psd",
".appveyor.yml",
".editorconfig",
".github",
".gitignore",
".travis.yml"
],
"dependencies": {},
"devDependencies": {
"ava": "^0.25.0",
"cname": "0.0.2",
"husky": "^0.14.3",
"inject-ga": "^0.2.4",
"marshmallow": "latest",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"surge": "^0.20.1"
},
"engines": {
"node": ">=8"
},
"scripts": {
"build": "rimraf dist && marshmallow -o dist -i artwork.psd -t 'DEV IO Foundation' -d 'Ways of thinking, a single goal!' -f -m && inject-ga dist/index.html -o dist/index.html -c 'UA-24389952-19'",
"deploy:staging": "NODE_ENV=staging npm run build && surge -p dist -d staging.deviofoundation.org",
"deploy:production": "NODE_ENV=production npm run build && surge -p dist -d deviofoundation.org",
"precommit": "npm t",
"test": "nyc ava"
}
}