-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
53
54
55
56
57
58
59
60
61
{
"name": "ion",
"version": "0.9.14",
"main": "lib/index",
"bin": {
"ion": "bin/ion.js"
},
"repository": "https://github.com/krisnye/ion.git",
"scripts": {
"dev": "npm install && npm link",
"clean": "rm -rf node_modules && rm -rf lib && npm unlink",
"build": "node bin/ion -c",
"watch": "node bin/ion -w",
"inspect": "node --inspect bin/ion -w",
"postinstall": "node boot/builder/_command.js -c",
"docserver": "http-server docs/www -p 9000"
},
"directories": {
"lib": "lib",
"src": "src"
},
"build": {
"package": true,
"merge": {
"../dist/ion-all.js": {
"exclude": [
"builder"
]
},
"../dist/ion-browser.js": {
"exclude": [
"builder",
"test",
"compiler"
]
},
"../dist/ion-min.js": {
"exclude": [
"builder",
"test",
"compiler"
],
"compress": true
}
}
},
"contributors": [
],
"dependencies": {
"coffeescript": "2.2.x",
"esprima": "1.1.x",
"pegjs": "0.8.x",
"source-map": "^0.7.2",
"uglify-js": "^3.3.26"
},
"devDependencies": {
"express": "^4.16.3",
"http-server": "^0.11.1"
}
}