-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
64 lines (64 loc) · 2.2 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "amp",
"description": "A collection of utility modules as independent modules.",
"version": "1.0.2",
"author": "Henrik Joreteg <[email protected]>",
"bugs": "https://github.com/ampersandjs/amp/issues",
"dependencies": {
"async": "^0.9.0",
"browserify": "^8.1.3",
"columnizer": "^0.1.0",
"fixpack": "^1.2.0",
"fs-extra": "^0.16.3",
"gzip-size": "^1.0.0",
"http-server": "^0.7.3",
"jade": "^1.7.0",
"js-size": "^1.0.3",
"marked": "^0.3.2",
"npm": "^2.5.0",
"phantomjs": "^1.9.12",
"precommit-hook": "^1.0.7",
"pretty-bytes": "^1.0.1",
"rimraf": "^2.2.8",
"tap-spec": "^2.1.0",
"tape": "^3.0.3",
"tape-run": "^0.3.0",
"through2": "^0.6.3",
"uglify-js": "^2.4.16",
"zuul": "^1.17.2",
"zuulnice": "^1.0.0"
},
"homepage": "http://amp.ampersandjs.com",
"keywords": [
"util",
"collection",
"amp"
],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/ampersandjs/amp"
},
"scripts": {
"before-test": "node bin/gen-testrunner",
"build": "npm run clean && npm run folders && npm run write-package-files && npm run before-test && npm run calculate-sizes && npm run build-site",
"build-site": "node bin/build-site",
"calculate-sizes": "npm run make-local && node bin/calculate-sizes.js && npm run make-remote",
"clean": "node bin/sort-modules && fixpack",
"folders": "node bin/gen-folders",
"make-local": "node bin/convert-requires local",
"make-remote": "node bin/convert-requires remote",
"prepublish": "node bin/check-local-requires.js",
"publish": "node bin/publish-all",
"publish-site": "git checkout gh-pages && git merge master && git push origin gh-pages && git checkout master",
"show-tree": "node bin/show-tree",
"start": "npm run build-site && http-server -p 8000",
"test": "browserify -t ./lib/make-local.js bin/test-all.js | tape-run | tap-spec",
"test-browser": "zuul --local 8080 -- bin/test-all.js",
"test-ci": "zuul -- bin/test-all.js",
"test-node": "node bin/test-server.js | tap-spec",
"validate": "node bin/check-doc.js",
"write-package-files": "node bin/write-package-files"
}
}