-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (38 loc) · 889 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
37
38
39
{
"name": "contentspinner",
"version": "0.1.1",
"description": "ContentSpinner creates (spins) different variants of text",
"main": "contentspinner.js",
"bin": {
},
"author": {
"name": "Yousef El-Dardiry",
"email": "[email protected]",
"url": "http://www.twitter.com/yousefed"
},
"repository": {
"type": "git",
"url": "[email protected]:YousefED/contentspinner.git"
},
"licenses": [{
"type": "Apache",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}],
"optionalDependencies": {},
"keywords": [
"spinner",
"spinning"
],
"dependencies": {
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"source-map-support": "^0.4.0",
"typescript": "~1.8.10"
},
"scripts": {
"test": "npm run build && mocha --require source-map-support/register test",
"build": "tsc -p ."
}
}