-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 932 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
32
33
34
35
36
{
"name": "ruler",
"description": "尺规作图引擎",
"version": "0.0.0",
"homepage": "http://techird.com/ruler",
"main": "all.js",
"author": [
"techird <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/techird/ruler.git"
},
"keywords": [
"ruler",
"graphic",
"shape"
],
"bugs": {
"url": "https://github.com/techird/ruler/issues"
},
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"mocha": "2.0.1",
"should": "4.1.0",
"uglify-js": "2.4.15",
"jdists": "0.1.10",
"jshint": "2.5.8"
},
"scripts": {
"test": "mocha -R spec && npm run coverage",
"dist": "jdists index.html -o release/index.html && uglifyjs release/all.js -o release/all.js -p 5 -c -m",
"lint": "jshint src/*.js *.json"
}
}