|
1 | 1 | { |
2 | 2 | "name": "espurify", |
3 | | - "description": "Clone AST without extra properties", |
4 | 3 | "version": "3.1.0", |
| 4 | + "description": "Clone AST without extra properties", |
| 5 | + "keywords": [ |
| 6 | + "ast", |
| 7 | + "estree", |
| 8 | + "ecmascript", |
| 9 | + "es6" |
| 10 | + ], |
| 11 | + "homepage": "https://github.com/estools/espurify", |
| 12 | + "bugs": "https://github.com/estools/espurify/issues", |
| 13 | + "repository": { |
| 14 | + "type": "git", |
| 15 | + "url": "git://github.com/estools/espurify.git" |
| 16 | + }, |
| 17 | + "license": "MIT", |
5 | 18 | "author": { |
6 | 19 | "name": "Takuto Wada", |
7 | 20 | |
8 | 21 | "url": "https://github.com/twada" |
9 | 22 | }, |
10 | | - "bugs": "https://github.com/estools/espurify/issues", |
11 | 23 | "contributors": [ |
12 | 24 | { |
13 | 25 | "name": "Renée Kooi", |
|
18 | 30 | "url": "https://github.com/papandreou" |
19 | 31 | } |
20 | 32 | ], |
21 | | - "devDependencies": { |
22 | | - "acorn": "^8.0.0", |
23 | | - "babel-types": "^6.3.20", |
24 | | - "babylon": "^6.3.20", |
25 | | - "esprima": "^4.0.0", |
26 | | - "estraverse": "^5.0.0", |
27 | | - "semistandard": "^17.0.0", |
28 | | - "snazzy": "^9.0.0" |
29 | | - }, |
| 33 | + "type": "commonjs", |
| 34 | + "main": "index.js", |
30 | 35 | "files": [ |
31 | 36 | "CHANGELOG.md", |
32 | 37 | "MIT-LICENSE.txt", |
|
35 | 40 | "lib", |
36 | 41 | "package.json" |
37 | 42 | ], |
38 | | - "homepage": "https://github.com/estools/espurify", |
39 | | - "keywords": [ |
40 | | - "ast", |
41 | | - "estree", |
42 | | - "ecmascript", |
43 | | - "es6" |
44 | | - ], |
45 | | - "license": "MIT", |
46 | | - "main": "index.js", |
47 | | - "repository": { |
48 | | - "type": "git", |
49 | | - "url": "git://github.com/estools/espurify.git" |
50 | | - }, |
51 | 43 | "scripts": { |
52 | 44 | "preversion": "npm test", |
53 | 45 | "lint": "semistandard --verbose index.js lib test | snazzy", |
54 | 46 | "fmt": "semistandard --fix index.js lib test", |
55 | 47 | "test": "npm run lint && node --test" |
56 | 48 | }, |
| 49 | + "devDependencies": { |
| 50 | + "acorn": "^8.0.0", |
| 51 | + "babel-types": "^6.3.20", |
| 52 | + "babylon": "^6.3.20", |
| 53 | + "esprima": "^4.0.0", |
| 54 | + "estraverse": "^5.0.0", |
| 55 | + "semistandard": "^17.0.0", |
| 56 | + "snazzy": "^9.0.0" |
| 57 | + }, |
57 | 58 | "semistandard": { |
58 | 59 | "ignore": [ |
59 | 60 | "/build/", |
60 | 61 | "/bench/", |
61 | 62 | "**/*.jsx" |
62 | 63 | ] |
63 | | - }, |
64 | | - "type": "commonjs" |
| 64 | + } |
65 | 65 | } |
0 commit comments