-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.67 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pfnp",
"version": "1.0.0",
"description": "Programming For Non-Programmers",
"main": "./backend/index.js",
"scripts": {
"dev": "npm run watch & npm run server-dev",
"start": "npm run build && npm run server-prod",
"deploy": "npm test && npm run build && surge dist --domain pfnp.surge.sh",
"test": "npm run audit && npm run lint && npm run test-js",
"test-js": "mocha",
"server-dev": "node-inspector & nodemon --debug server.js",
"server-prod": "node server.js",
"audit": "node-license-validator --depth Infinity --production --allow-licenses ISC MIT BSD Apache WTFPL MIT/X11 Unlicense LGPL CC-BY BSD-3-Clause BSD-2-Clause \"Public Domain\" CC0-1.0 Apache-2.0",
"lint": "npm run lint-js && npm run lint-css && npm run lint-html",
"lint-js": "standard",
"lint-css": "postcss --config postcss.json",
"lint-html": "htmllint frontend/**/*.html",
"build": "npm run clean && npm run build-css && npm run build-html && npm run build-js",
"build-css": "cssnext frontend/app.css dist/app.css",
"build-html": "cpy frontend/**/*.html dist",
"build-js": "browserify frontend/app.js --transform babelify > dist/app.js",
"clean": "rimraf dist",
"watch": "npm run watch-css & npm run watch-html & npm run watch-js",
"watch-css": "cssnext --verbose --watch --sourcemap frontend/app.css dist/app.css",
"watch-html": "watch \"npm run build-html\" frontend",
"watch-js": "watchify frontend/app.js --transform babelify --outfile dist/app.js -dv"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cbas/pfnp.git"
},
"keywords": [
"pfnp",
"tutorial",
"programming",
"learning",
"howto"
],
"author": "Sebastiaan Deckers <seb@ninja.sg>",
"license": "ISC",
"private": true,
"bugs": {
"url": "https://github.com/cbas/pfnp/issues"
},
"homepage": "https://github.com/cbas/pfnp#readme",
"standard": {
"parser": "babel-eslint"
},
"devDependencies": {
"chai": "^3.2.0",
"htmllint-cli": "0.0.4",
"mocha": "^2.3.2",
"node-inspector": "^0.12.3",
"node-license-validator": "^1.0.0",
"nodemon": "^1.4.1",
"postcss-cli": "^2.1.0",
"postcss-reporter": "^1.1.0",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0",
"standard": "^5.2.1",
"stylelint": "^1.0.1",
"surge": "^0.14.4",
"watch": "^0.16.0",
"watchify": "^3.4.0"
},
"dependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.1",
"babelify": "^6.3.0",
"browserify": "^11.0.1",
"cpy": "^3.4.0",
"cssnext": "^1.8.4",
"dom4": "^1.4.6",
"express": "^4.13.3",
"http-server": "^0.8.0",
"isomorphic-fetch": "^2.1.1",
"rimraf": "^2.4.3"
}
}