forked from camman3d/jerboa.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.66 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
{
"name": "jerboa",
"version": "1.0.3",
"description": "Annotate and provide feedback on any web page.",
"main": "dist/jerboa.min.js",
"scripts": {
"//": "mocha test --compilers js:babel-core/register --recursive",
"cover": "nyc -r lcov -i babel-core/register mocha test --compilers js:babel-core/register --recursive",
"clean": "rm -rf dist",
"less": "lessc src/jerboa.less > dist/jerboa.css",
"autoprefix": "postcss -u autoprefixer -c postcss.json -o dist/jerboa.css dist/jerboa.css",
"cssmin": "cssnano dist/jerboa.css dist/jerboa.min.css",
"build:css": "npm run less; npm run autoprefix; npm run cssmin",
"build:js": "WEBPACK_STEP=compile webpack; WEBPACK_STEP=uglify webpack",
"build": "npm run build:js; npm run build:css"
},
"repository": {
"type": "git",
"url": "https://github.com/camman3d/jerboa.js.git"
},
"keywords": [
"annotate",
"annotation",
"feedback",
"markup",
"comment"
],
"author": "Josh Monson",
"license": "ISC",
"bugs": {
"url": "https://github.com/camman3d/jerboa.js/issues"
},
"homepage": "https://github.com/camman3d/jerboa.js",
"devDependencies": {
"autoprefixer": "^6.3.7",
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.3.3",
"cssnano": "^3.7.3",
"cssnano-cli": "^1.0.4",
"jsdom": "^9.4.1",
"less": "^2.7.1",
"mocha": "^2.5.3",
"mocha-jsdom": "^1.1.0",
"nyc": "^7.0.0",
"postcss-cli": "^2.5.2",
"sinon": "^1.17.4",
"webpack": "^1.13.1"
},
"dependencies": {
"axios": "^0.15.2",
"blueimp-md5": "^2.3.1"
}
}