-
Notifications
You must be signed in to change notification settings - Fork 258
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "syn",
"version": "0.15.0",
"main": "dist/cjs/syn.js",
"scripts": {
"preversion": "npm test && npm run build",
"postpublish": "git push --tags && git push",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"jshint": "jshint src/. --config",
"testee": "testee test/test.html --browsers firefox",
"test": "npm run jshint && npm run testee",
"build": "node build.js"
},
"devDependencies": {
"jquery": ">=2.0.0",
"jquery-ui-dist": "^1.12.1",
"jshint": "^2.8.0",
"requirejs": "^2.3.3",
"steal": "^2.0.0",
"steal-qunit": "^1.0.1",
"steal-tools": "^2.0.0",
"testee": "^0.9.0",
"tmp": "^0.0.31"
},
"steal": {
"directories": {
"lib": "src"
},
"main": "syn",
"map": {},
"ignoreBrowser": true
},
"author": {
"name": "Bitovi",
"email": "[email protected]",
"web": "http://bitovi.com/"
},
"repository": {
"type": "git",
"url": "[email protected]:bitovi/syn.git",
"github": "https://github.com/bitovi/syn"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
]
}