forked from krux/postscribe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.31 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@appmonet/postscribe",
"version": "0.1.2",
"description": "Asynchronously write javascript, even with document.write.",
"homepage": "https://krux.github.io/postscribe",
"bugs": "https://github.com/AppMonet/postscribe/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/AppMonet/postscribe.git"
},
"keywords": [
"document.write",
"tag writer",
"asynchronous",
"javascript",
"after load"
],
"author": {
"name": "Derek Brans",
"web": "http://github.com/dbrans"
},
"maintainers": [
{
"name": "Joshua Newman",
"web": "https://github.com/jnewman"
}
],
"main": "dist/@appmonet/postscribe.js",
"browser": "dist/@appmonet/postscribe.js",
"dependencies": {
"@appmonet/prescribe": "0.1.3",
"gulp-cli": "^2.3.0"
},
"devDependencies": {
"babel-core": "6.20.0",
"babel-eslint": "7.1.0",
"babel-loader": "6.2.9",
"babel-plugin-transform-es3-member-expression-literals": "6.22.0",
"babel-plugin-transform-es3-property-literals": "6.8.0",
"babel-plugin-transform-object-assign": "6.8.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-es2015-loose": "8.0.0",
"babel-register": "6.18.0",
"babelify": "7.3.0",
"cz-conventional-changelog": "1.2.0",
"del": "2.2.2",
"eslint": "3.12.0",
"expect.js": "0.3.1",
"gulp": "^4.0.2",
"gulp-babel": "6.1.2",
"gulp-esdoc": "^0.4.1",
"gulp-eslint": "3.0.1",
"gulp-filter": "5.0.0",
"gulp-header": "1.8.8",
"gulp-jscs": "4.1.0",
"gulp-rename": "1.2.2",
"gulp-strip-debug": "1.1.0",
"gulp-uglify": "2.0.0",
"isparta": "4.0.0",
"isparta-loader": "2.0.0",
"jquery": "^3.4.1",
"jscs": "3.0.7",
"json-loader": "0.5.4",
"karma": "^4.1.0",
"karma-babel-preprocessor": "6.0.1",
"karma-coverage": "^1.1.2",
"karma-coveralls": "^2.1.0",
"karma-expect": "1.1.3",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.1",
"karma-phantomjs-launcher": "1.0.2",
"karma-sauce-launcher": "^2.0.2",
"karma-sinon": "1.0.5",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^6.1.4",
"phantomjs-prebuilt": "^2.1.16",
"semantic-release": "^15.13.16",
"sinon": "1.17.7",
"watchify": "^3.11.1",
"webpack": "^4.34.0",
"webpack-dev-server": "^3.7.2",
"webpack-stream": "^5.2.1"
},
"config": {
"ports": {
"cdn": "8080"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"babel": {
"presets": [
"es2015-loose"
],
"plugins": [
"transform-es3-member-expression-literals",
"transform-es3-property-literals",
"transform-object-assign"
],
"comments": true,
"compact": false
},
"scripts": {
"build": "./node_modules/gulp-cli/bin/gulp.js build",
"clean": "./node_modules/bin/gulp clean",
"doc": "gulp doc",
"lint": "gulp lint",
"semantic-release": "semantic-release pre && gulp build && npm publish && semantic-release post",
"start": "gulp serve",
"tdd": "gulp tdd",
"tdd:coverage": "gulp tdd:coverage",
"test": "gulp test",
"test:ci": "gulp test:ci",
"test:cross-browser": "gulp test:cross-browser",
"test:debug": "gulp test:debug",
"test:nocoverage": "gulp test:nocoverage"
}
}