forked from fchasen/marks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.24 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
{
"name": "marks-pane",
"version": "1.0.9",
"description": "A library for drawing marks on a pane",
"homepage": "https://github.com/fchasen/marks",
"bugs": {
"url": "https://github.com/fchasen/marks/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/fchasen/marks"
},
"author": "Fred Chasen",
"license": "MIT",
"main": "lib/marks.js",
"module": "lib/marks.js",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-env": "1.6.1",
"babel-preset-es2015": "^6.22.0",
"babili-webpack-plugin": "0.1.2",
"babelify": "^8.0.0",
"karma": "^2.0.0",
"karma-browserify": "^5.2.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-referee": "^0.4.2",
"mocha": "^5.0.4",
"referee": "^1.1.1",
"referee-sinon": "^1.0.2",
"sinon": "^4.4.6",
"babel-cli": "^6.22.2"
},
"scripts": {
"prepublish": "make clean default",
"test": "./node_modules/karma/bin/karma start --single-run",
"watch": "mkdir -p pkg && watchify -t babelify -s marks src/marks.js -o pkg/marks.js"
}
}