-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
31 lines (31 loc) · 915 Bytes
/
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
{
"name": "appnexus-html5-lib",
"description": "AppNexus HTML5 Client Library",
"version": "1.4.1",
"main": "src/client.js",
"author": {
"name": "AppNexus",
"url": "http://www.appnexus.com"
},
"license": "Apache-2.0",
"scripts": {
"build": "grunt build",
"watch": "grunt watch",
"test": "grunt build && mocha --reporter spec",
"preversion": "npm run test && git add dist && git checkout dist/",
"postversion": "npm run build && git add dist/ && git commit --amend --no-edit && git push origin master && git push --tags || true"
},
"devDependencies": {
"callsite": "^1.0.0",
"chai": "^4.1.2",
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.1",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-uglify": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"jsdom": "^7.2.2",
"mocha": "*",
"sinon": "^5.0.7"
}
}