-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "famous-dist-generator",
"version": "1.2.0",
"description": "Build various dist versions of famous/famous. RequireJS, CommonJS, or standalone window.famous object",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/FamousTools/famous-dist-generator.git"
},
"scripts": {
"test": "npm run-script lint && tape test/*-test.js | tap-spec",
"watch": "nodemon -e js,json --exec 'npm test'",
"lint": "eslint **/*.js"
},
"author": "Myles Borins <[email protected]>",
"devDependencies": {
"eslint": "^0.16.1",
"famous": "0.3.4",
"jsdom": "^3.1.0",
"mkdirp": "^0.5.0",
"navigator": "^1.0.1",
"nodemon": "^1.3.6",
"raf": "^2.0.4",
"rimraf": "^2.2.8",
"tap-spec": "^2.2.0",
"tape": "^3.5.0"
},
"dependencies": {
"browserify": "^9.0.3",
"common-ground": "^1.1.0",
"deamdify": "^0.1.1",
"derequire": "^2.0.0",
"findit": "^2.0.0",
"index-finger": "^1.0.1",
"minimist": "^1.1.0",
"requirejs": "^2.1.15",
"uglify-js": "^2.4.16"
},
"bin": {
"famous-dist-generator": "bin/cmd.js"
},
"directories": {
"bin": "./bin",
"lib": "./lib",
"test": "./test"
},
"engines": {
"node": ">=0.10.28",
"npm": ">=1.4.10"
},
"license": "MPLv2"
}