OLD | NEW |
1 { | 1 { |
2 "name": "prismjs", | 2 "name": "prismjs", |
3 "version": "0.0.1", | 3 "version": "1.2.0", |
4 "description": "Lightweight, robust, elegant syntax highlighting. A spin-off p
roject from Dabblet.", | 4 "description": "Lightweight, robust, elegant syntax highlighting. A spin-off p
roject from Dabblet.", |
5 "main": "prism.js", | 5 "main": "prism.js", |
6 "scripts": { | 6 "scripts": { |
7 "test": "echo \"Error: no test specified\" && exit 1" | 7 "test": "mocha tests/testrunner-tests.js && mocha tests/run.js" |
8 }, | 8 }, |
9 "repository": { | 9 "repository": { |
10 "type": "git", | 10 "type": "git", |
11 "url": "https://github.com/LeaVerou/prism.git" | 11 "url": "https://github.com/LeaVerou/prism.git" |
12 }, | 12 }, |
13 "keywords": [ | 13 "keywords": [ |
14 "prism", | 14 "prism", |
15 "highlight" | 15 "highlight" |
16 ], | 16 ], |
17 "author": "Lea Verou", | 17 "author": "Lea Verou", |
18 "license": "MIT", | 18 "license": "MIT", |
19 "readmeFilename": "README.md", | 19 "readmeFilename": "README.md", |
20 "devDependencies": { | 20 "devDependencies": { |
| 21 "chai": "^2.3.0", |
21 "gulp": "^3.8.6", | 22 "gulp": "^3.8.6", |
22 "gulp-concat": "^2.3.4", | 23 "gulp-concat": "^2.3.4", |
23 "gulp-header": "^1.0.5", | 24 "gulp-header": "^1.0.5", |
24 "gulp-rename": "^1.2.0", | 25 "gulp-rename": "^1.2.0", |
25 "gulp-uglify": "^0.3.1" | 26 "gulp-uglify": "^0.3.1", |
| 27 "gulp-replace": "^0.5.4", |
| 28 "mocha": "^2.2.5", |
| 29 "yargs": "^3.26.0" |
26 } | 30 } |
27 } | 31 } |
OLD | NEW |