forked from ariatemplates/ariatemplates
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 2.24 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
{
"author": "ariatemplates <[email protected]> (http://github.com/ariatemplates)",
"name": "ariatemplates",
"description": "Aria Templates (aka AT) is an application framework written in JavaScript for building rich and large-scaled enterprise web applications.",
"version": "1.7.15",
"homepage": "http://ariatemplates.com",
"repository": {
"type": "git",
"url": "git://github.com/ariatemplates/ariatemplates.git"
},
"license": "Apache-2.0",
"main": "src/aria/node.js",
"config": {
"port": "8080",
"phantomjsInstances": 2
},
"scripts": {
"start": "node scripts/server.js",
"prestart": "npm install",
"prepublish": "npm run lint-src && npm run grunt",
"lint-src": "node build/grunt-cli.js checkStyle",
"lint-test": "node build/grunt-cli.js checkStyleTest",
"lint": "node build/grunt-cli.js checkStyle checkStyleTest",
"grunt": "node build/grunt-cli.js",
"attester": "node node_modules/attester/bin/attester.js test/attester.yml --env package.json",
"attester-nophantom": "sh ./scripts/attester-nophantom.sh",
"attester-flatskin": "node node_modules/attester/bin/attester.js test/attester-flatskin.yml --env package.json",
"attester-packaged": "node node_modules/attester/bin/attester.js test/attester-packaged.yml --env package.json",
"attester-testskin": "node node_modules/attester/bin/attester.js test/attester-testskin.yml --env package.json",
"mocha": "mocha --recursive test/node",
"test-suites": "npm run mocha && npm run attester && npm run attester-packaged && npm run attester-flatskin && npm run attester-testskin && npm run attester-nophantom",
"test": "npm run lint && npm run grunt && npm run test-suites",
"attest": "node scripts/attest.js",
"ci": "npm run lint-test && npm run test-suites"
},
"dependencies": {
"at-noder-converter": "1.0.1",
"atpackager": "0.2.7",
"gzip-js": "0.3.2",
"noder-js": "1.6.2"
},
"devDependencies": {
"attester": "2.4.0",
"express": "3.4.8",
"grunt": "0.4.2",
"grunt-contrib-jshint": "0.8.0",
"grunt-leading-indent": "0.1.0",
"grunt-verifylowercase": "0.2.0",
"jade": "1.1.5",
"mocha": "2.3.3",
"ua-parser-js": "git+https://github.com/ariatemplates/ua-parser-js#latest"
}
}